Uses of Class
to.etc.webapp.query.QCriteria

Packages that use QCriteria
to.etc.domui.component.input   
to.etc.domui.component.lookup   
to.etc.domui.component.meta   
to.etc.domui.component.meta.impl   
to.etc.domui.component.tbl   
to.etc.domui.hibernate.generic   
to.etc.domui.hibernate.model   
to.etc.domui.pages.generic   
to.etc.webapp.qsql   
to.etc.webapp.query   
 

Uses of QCriteria in to.etc.domui.component.input
 

Methods in to.etc.domui.component.input that return QCriteria
 QCriteria<T> IQueryManipulator.adjustQuery(QCriteria<T> c)
           
 QCriteria<T> IKeyWordSearchQueryFactory.createQuery(java.lang.String searchString)
          Use to manually modify query.
 

Methods in to.etc.domui.component.input with parameters of type QCriteria
 QCriteria<T> IQueryManipulator.adjustQuery(QCriteria<T> c)
           
 

Constructors in to.etc.domui.component.input with parameters of type QCriteria
ComboComponentBase(QCriteria<T> query)
           
ComboLookup(QCriteria<T> query)
          Create a combo which fills it's list with the result of the query passed.
ComboLookup(QCriteria<T> query, INodeContentRenderer<T> cr)
          Create a combo which fills it's list with the result of the query passed.
ComboLookup(QCriteria<T> query, java.lang.String... properties)
          Create a combo which fills it's list with the result of the query.
CriteriaComboDataSet(QCriteria<T> query)
          Create with the specified immutable QCriteria.
 

Uses of QCriteria in to.etc.domui.component.lookup
 

Methods in to.etc.domui.component.lookup that return QCriteria
 QCriteria<T> LookupForm.getEnteredCriteria()
          This checks all of the search fields for data.
 

Methods in to.etc.domui.component.lookup with parameters of type QCriteria
 ILookupControlInstance.AppendCriteriaResult EqLookupControlImpl.appendCriteria(QCriteria<?> crit)
           
abstract  ILookupControlInstance.AppendCriteriaResult AbstractLookupControlImpl.appendCriteria(QCriteria<?> crit)
           
 ILookupControlInstance.AppendCriteriaResult LookupNumberControl.appendCriteria(QCriteria<?> crit)
           
 ILookupControlInstance.AppendCriteriaResult ILookupControlInstance.appendCriteria(QCriteria<?> crit)
          Evaluate the contents of the input for this lookup line; if the user has added data there then add the values to the query.
protected  ILookupControlInstance.AppendCriteriaResult LookupNumberControl.appendCriteria(QCriteria<?> crit, QOperation op, T val)
           
 

Uses of QCriteria in to.etc.domui.component.meta
 

Methods in to.etc.domui.component.meta that return QCriteria
 QCriteria<?> ClassMetaModel.createCriteria()
          EXPERIMENTAL If this is a persistent class, this should create a base QCriteria instance to do queries on this class.
 

Uses of QCriteria in to.etc.domui.component.meta.impl
 

Methods in to.etc.domui.component.meta.impl that return QCriteria
 QCriteria<?> ClassMetaModelWrapper.createCriteria()
           
 QCriteria<?> DefaultClassMetaModel.createCriteria()
          EXPERIMENTAL If this is a persistent class, this should create a base QCriteria instance to do queries on this class.
 

Uses of QCriteria in to.etc.domui.component.tbl
 

Methods in to.etc.domui.component.tbl that return QCriteria
 QCriteria<T> SimpleSearchModel.getQuery()
           
 QCriteria<?> SimpleSearchModel.getSortCriteria()
           
 

Methods in to.etc.domui.component.tbl with parameters of type QCriteria
protected  void SimpleSearchModel.handleQuerySorting(QCriteria<T> qc)
           
 java.util.List<T> DefaultQueryHandler.query(QCriteria<T> q)
           
 java.util.List<T> IQueryHandler.query(QCriteria<T> q)
           
 

Constructors in to.etc.domui.component.tbl with parameters of type QCriteria
SimpleSearchModel(IQueryHandler<T> ss, QCriteria<T> qc)
           
SimpleSearchModel(NodeBase contextSourceNode, QCriteria<T> qc)
          EXPERIMENTAL INTERFACE
SimpleSearchModel(QDataContextFactory ss, QCriteria<T> qc)
          Use {@link SimpleSearchModel#SimpleSearchModel(IQueryHandler, QCriteria) instead!
 

Uses of QCriteria in to.etc.domui.hibernate.generic
 

Methods in to.etc.domui.hibernate.generic with parameters of type QCriteria
<T> java.util.List<T>
HibernateQueryExecutor.query(BuggyHibernateBaseContext root, QCriteria<T> q)
           
 

Uses of QCriteria in to.etc.domui.hibernate.model
 

Methods in to.etc.domui.hibernate.model with parameters of type QCriteria
static Criteria GenericHibernateHandler.createCriteria(Session ses, QCriteria<?> qc)
          Translate generalized criteria to Hibernate criteria on a session.
 void CriteriaCreatingVisitorWithSubcriteria.visitCriteria(QCriteria<?> qc)
           
 void CriteriaCreatingVisitor.visitCriteria(QCriteria<?> qc)
           
 

Uses of QCriteria in to.etc.domui.pages.generic
 

Methods in to.etc.domui.pages.generic with parameters of type QCriteria
protected  void BasicListPage.adjustCriteria(QCriteria<T> crit)
           
 

Uses of QCriteria in to.etc.webapp.qsql
 

Methods in to.etc.webapp.qsql with parameters of type QCriteria
static
<T> JdbcQuery<T>
JdbcQuery.create(QCriteria<T> q)
           
<T> java.util.List<T>
JdbcDataContext.query(QCriteria<T> q)
           
<T> java.util.List<T>
JdbcQueryExecutor.query(QDataContext root, QCriteria<T> q)
           
static
<T> java.util.List<T>
JdbcQuery.query(QDataContext dc, QCriteria<T> q)
           
<T> T
JdbcDataContext.queryOne(QCriteria<T> q)
           
static
<T> T
JdbcQuery.queryOne(QDataContext dc, QCriteria<T> q)
           
 void JdbcSQLGenerator.visitCriteria(QCriteria<?> qc)
           
 

Uses of QCriteria in to.etc.webapp.query
 

Methods in to.etc.webapp.query that return QCriteria
 QCriteria<T> QCriteria.add(QOperatorNode r)
          
 QCriteria<T> QCriteria.add(QOrder r)
          Add an order clause to the list of sort items.
 QCriteria<T> QCriteria.ascending(java.lang.String property)
          Add a property to do an ascending sort on.
 QCriteria<T> QCriteria.between(java.lang.String property, java.lang.Object a, java.lang.Object b)
          Compare the value of a property with two literal bounds.
static
<U> QCriteria<U>
QCriteria.create(java.lang.Class<U> clz)
          Create a QCriteria to select a set of the specified class.
static
<U> QCriteria<U>
QCriteria.create(ICriteriaTableDef<U> root)
          EXPERIMENTAL Create a QCriteria on some metadata structured data.
 QCriteria<T> QCriteria.descending(java.lang.String property)
          Add a property to do a descending sort on.
 QCriteria<T> QCriteria.eq(java.lang.String property, double value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.eq(java.lang.String property, long value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.eq(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.ge(java.lang.String property, double value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.ge(java.lang.String property, long value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.ge(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.gt(java.lang.String property, double value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.gt(java.lang.String property, long value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.gt(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.ilike(java.lang.String property, java.lang.Object value)
          Do a case-independent 'like' comparison.
 QCriteria<T> QCriteria.isnotnull(java.lang.String property)
          Add the restriction that the property specified must be not-null.
 QCriteria<T> QCriteria.isnull(java.lang.String property)
          Add the restriction that the property specified must be null.
 QCriteria<T> QCriteria.le(java.lang.String property, double value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.le(java.lang.String property, long value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.le(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.like(java.lang.String property, java.lang.Object value)
          Do a 'like' comparison.
 QCriteria<T> QCriteria.limit(int limit)
          Limit the #of rows to the specified count.
 QCriteria<T> QCriteria.lt(java.lang.String property, double value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.lt(java.lang.String property, long value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.lt(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.ne(java.lang.String property, double value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.ne(java.lang.String property, long value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.ne(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QCriteria<T> QCriteria.or(QOperatorNode a1, QOperatorNode a2, QOperatorNode... a)
          Deprecated. 
 QCriteria<T> QCriteria.sqlCondition(java.lang.String sql)
          Add a restriction specified in bare SQL.
 QCriteria<T> QCriteria.start(int start)
          Start returning rows at the specified index in the result set (0-based).
 

Methods in to.etc.webapp.query with parameters of type QCriteria
<T> java.util.List<T>
IQueryExecutor.query(C root, QCriteria<T> q)
          Execute the query specified by q and return a list of results.
<T> java.util.List<T>
QDataContext.query(QCriteria<T> q)
          Execute the query specified by q and return a list of results.
<T> java.util.List<T>
QAbstractDataContext.query(QCriteria<T> q)
          Execute the query specified by q and return a list of results.
<T> T
QDataContext.queryOne(QCriteria<T> q)
          Execute the query specified by q, and expect and return at most 1 result.
<T> T
QAbstractDataContext.queryOne(QCriteria<T> q)
          Execute the query specified by q, and expect and return at most 1 result.
 void QQueryRenderer.visitCriteria(QCriteria<?> qc)
           
 void QNodeVisitorBase.visitCriteria(QCriteria<?> qc)
           
 void QNodeVisitor.visitCriteria(QCriteria<?> qc)