Uses of Interface
de.mguennewig.pobjects.Condition

Packages that use Condition
de.mguennewig.pobjects The package de.mguennewig.pobjects provides an abstraction layer on top of a set of database tables by which table rows can be accessed transparently as Java objects. 
de.mguennewig.pobjects.memdb This package contains a simple non-persistent Container implementation that operates only in memory. 
de.mguennewig.pobjsearch This package contains the PObjSearch framework that is based on the PObjForm library. 
 

Uses of Condition in de.mguennewig.pobjects
 

Classes in de.mguennewig.pobjects that implement Condition
 class Junction
          A conjunction or disjunction of Terms as part of a SQL statement.
 class Predicate
          A boolean expression to be used in the WHERE part of a SQL statement.
 

Methods in de.mguennewig.pobjects with parameters of type Condition
 void Query.addConj(Condition pred)
          Adds the Condition to the list of boolean expressions, that are AND'ed together to form the WHERE part of the statement.
 

Uses of Condition in de.mguennewig.pobjects.memdb
 

Methods in de.mguennewig.pobjects.memdb with parameters of type Condition
 void PredicateQuery.addConj(Condition condition)
          Adds the Condition to the list of boolean expressions, that are AND'ed together to form the WHERE part of the statement.
 

Uses of Condition in de.mguennewig.pobjsearch
 

Fields in de.mguennewig.pobjsearch declared as Condition
static Condition[] SearchModel.NO_CONDITIONS
           
 

Methods in de.mguennewig.pobjsearch that return Condition
 Condition SearchModel.getCondition(int n)
           
 

Constructors in de.mguennewig.pobjsearch with parameters of type Condition
SearchModel(TableExpr[] tables, Condition[] conditions, SearchColumn[] columns)
          Creates a new instance of SearchModel
SearchModel(TableExpr[] tables, Condition[] conditions, SearchColumn[] columns, SearchFilter[] additionalFilters)
          Creates a new instance of SearchModel
StaticSearchFilter(java.lang.String identifier, java.lang.String label, Condition... filters)
          Creates a new search filter.