Uses of Interface
net.sf.jaxme.sqls.Statement

Packages that use Statement
net.sf.jaxme.sqls   
net.sf.jaxme.sqls.impl   
 

Uses of Statement in net.sf.jaxme.sqls
 

Subinterfaces of Statement in net.sf.jaxme.sqls
 interface ConstrainedStatement
          Interface of a Statement supporting a WHERE clause.
 interface DeleteStatement
           
 interface InsertStatement
          Interface of an INSERT statement.
 interface SelectStatement
          Interface of a SELECT statement.
 interface SetStatement
          A common base interface for InsertStatement and UpdateStatement.
 interface UpdateStatement
          Interface of an update statement.
 

Methods in net.sf.jaxme.sqls that return Statement
 Statement TableReference.getStatement()
          Returns the Statement that created the reference.
 

Methods in net.sf.jaxme.sqls with parameters of type Statement
 java.lang.String SQLGenerator.getQuery(Statement pStatement)
          Generates an INSERT, UPDATE, DELETE or SELECT statement.
 

Uses of Statement in net.sf.jaxme.sqls.impl
 

Classes in net.sf.jaxme.sqls.impl that implement Statement
 class ConstrainedStatementImpl
           
 class DeleteStatementImpl
           
 class InsertStatementImpl
           
 class SelectStatementImpl
           
 class SetStatementImpl
           
 class StatementImpl
          A common base class for SelectStatement, InsertStatement, UpdateStatement, and DeleteStatement.
 class UpdateStatementImpl
           
 

Methods in net.sf.jaxme.sqls.impl that return Statement
 Statement TableReferenceImpl.getStatement()
           
 

Methods in net.sf.jaxme.sqls.impl with parameters of type Statement
 java.lang.String SQLGeneratorImpl.getQuery(Statement pStatement)