Uses of Interface
net.sf.jaxme.sqls.Table.Name

Packages that use Table.Name
net.sf.jaxme.sqls   
net.sf.jaxme.sqls.db2 DB2 support for the SQL generator This package contains some classes and interfaces enhancing the SQL generator with DB2 specific features.  
net.sf.jaxme.sqls.hsqldb HsqlDb support for the SQL generator This package contains some classes and interfaces enhancing the SQL generator with HsqlDb specific features.  
net.sf.jaxme.sqls.impl   
 

Uses of Table.Name in net.sf.jaxme.sqls
 

Methods in net.sf.jaxme.sqls that return Table.Name
 Table.Name TableReference.getAlias()
          Returns the references alias name.
 Table.Name Table.getName()
          Returns the table name.
 

Methods in net.sf.jaxme.sqls with parameters of type Table.Name
 void TableReference.setAlias(Table.Name pName)
          Sets the references alias name.
 Table Schema.newTable(Table.Name pName)
          Creates a new table with the given name in the schema.
 Table Schema.getTable(Table.Name pName)
          Returns the table with the given name or null, if no such table exists in the schema.
 

Uses of Table.Name in net.sf.jaxme.sqls.db2
 

Methods in net.sf.jaxme.sqls.db2 with parameters of type Table.Name
 Table DB2SQLFactoryImpl.newTableImpl(Schema pSchema, Table.Name pName)
           
 

Constructors in net.sf.jaxme.sqls.db2 with parameters of type Table.Name
DB2TableImpl(Schema pSchema, Table.Name pName)
           
 

Uses of Table.Name in net.sf.jaxme.sqls.hsqldb
 

Methods in net.sf.jaxme.sqls.hsqldb with parameters of type Table.Name
 Table HsqlDbSQLFactoryImpl.newTableImpl(Schema pSchema, Table.Name pName)
           
 

Constructors in net.sf.jaxme.sqls.hsqldb with parameters of type Table.Name
HsqlDbTableImpl(Schema pSchema, Table.Name pName)
           
 

Uses of Table.Name in net.sf.jaxme.sqls.impl
 

Classes in net.sf.jaxme.sqls.impl that implement Table.Name
static class TableImpl.NameImpl
           
 

Methods in net.sf.jaxme.sqls.impl that return Table.Name
 Table.Name TableReferenceImpl.getAlias()
           
 Table.Name TableImpl.getName()
           
 

Methods in net.sf.jaxme.sqls.impl with parameters of type Table.Name
 void TableReferenceImpl.setAlias(Table.Name pName)
           
protected  Table SQLFactoryImpl.newTableImpl(Schema pSchema, Table.Name pName)
           
 Table SchemaImpl.newTable(Table.Name pName)
           
 Table SchemaImpl.getTable(Table.Name pName)
           
 

Constructors in net.sf.jaxme.sqls.impl with parameters of type Table.Name
TableImpl(Schema pSchema, Table.Name pName)