Examples of rollDay()


Examples of com.hlcl.rql.as.ReddotDate.rollDay()

  /**
   * Liefert eine neue Liste von Seiten, deren letztes Änderungsdatum marginDays vor heute liegt.
   */
  public PageArrayList selectAllLastChangedOnBefore(int marginDays) throws RQLException {
    ReddotDate margin = new ReddotDate();
    margin.rollDay(-marginDays);
    return this.select(new LastChangedOnBeforePageFilter(margin));
  }

  /**
   * Liefert eine neue Liste von Seiten, die vom gegebenen Benutzer zuletzt geändert wurden.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.