Package com.hlcl.rql.as

Examples of com.hlcl.rql.as.ReddotDate


    currentPg.getStandardFieldDateValue("column_updated");
    currentPg.getStandardFieldNumericValue("column_width");
    currentPg.getStandardFieldUserDefinedValue("column_email");

    currentPg.setStandardFieldDateValue("template element name", new ReddotDate());
    currentPg.setStandardFieldNumericValue("template element name", 60);
    currentPg.setStandardFieldUserDefinedValue("template element name", "my-email@test.test");
  }
View Full Code Here


    listChildren1.findByFilename("filename");
    listChildren1.findByFilenameEndsWith("filenameSuffix");

    listChildren1.findByStandardFieldTextValue("templateElementName", "search value");
    listChildren1.findByStandardFieldDateValue("templateElementName", new ReddotDate());

    List<String> collectHeadlines = listChildren1.collectHeadlines();
    List<String> collectHeadlinesAndIds = listChildren1.collectHeadlinesAndIds();
    Set collectLastChangedByUsers = listChildren1.collectLastChangedByUsers();
    List<String> collectTemplateNames = listChildren1.collectTemplateNames();

    // by page attribute
    listChildren1.selectAllCreatedBy(project.getUserGroupByName("user group name"));
    listChildren1.selectAllLastChangedBy("user name");
    listChildren1.selectAllLastChangedOnBefore(10);
    listChildren1.selectAllLastChangedOnBefore(new ReddotDate());

    listChildren1.selectAllPagesBasedOn("content class name");

    listChildren1.selectAllPagesContaining("templateElementName");
    listChildren1.selectAllPagesNotContaining("templateElementName");
View Full Code Here

  /**
   * 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));
  }
View Full Code Here

TOP

Related Classes of com.hlcl.rql.as.ReddotDate

Copyright © 2018 www.massapicom. 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.