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

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

Uses of Index in net.sf.jaxme.sqls
 

Methods in net.sf.jaxme.sqls that return Index
 Index Table.newKey()
          Creates a new, unique index on the table.
 Index Table.newIndex()
          Creates a new, non-unique index on the table.
 Index Table.newPrimaryKey()
          Creates a new primary key on the table.
 Index Table.getPrimaryKey()
          Returns the tables primary key, if any, or null, if the table doesn't have a primary key.
 

Methods in net.sf.jaxme.sqls with parameters of type Index
 java.util.Collection SQLGenerator.getCreate(Index pIndex)
          Generates a CREATE INDEX statement.
 java.util.Collection SQLGenerator.getDrop(Index pIndex)
          Generates a DROP INDEX statement.
 

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

Classes in net.sf.jaxme.sqls.impl that implement Index
 class IndexImpl
           
 

Methods in net.sf.jaxme.sqls.impl that return Index
 Index TableImpl.newKey()
           
 Index TableImpl.newIndex()
           
 Index TableImpl.getPrimaryKey()
           
 Index TableImpl.newPrimaryKey()
           
 

Methods in net.sf.jaxme.sqls.impl with parameters of type Index
protected  java.lang.String SQLGeneratorImpl.createIndexAsPartOfCreateTable(Index pIndex)
           
 java.util.Collection SQLGeneratorImpl.getCreate(Index pIndex)
           
 java.util.Collection SQLGeneratorImpl.getDrop(Index pIndex)