Uses of Class
org.codehaus.modello.generator.database.model.Index

Packages that use Index
org.codehaus.modello.generator.database.model   
org.codehaus.modello.generator.database.sql   
 

Uses of Index in org.codehaus.modello.generator.database.model
 

Subclasses of Index in org.codehaus.modello.generator.database.model
 class Unique
          Provides compatibility with Torque-style xml with separate <index> and <unique> tags, but adds no functionality.
 

Methods in org.codehaus.modello.generator.database.model that return Index
 Index Table.getIndex(int index)
           
 Index Table.findIndex(java.lang.String name)
          Finds the index with the specified name, using case insensitive matching.
 

Methods in org.codehaus.modello.generator.database.model with parameters of type Index
 void Table.addIndex(Index index)
           
 

Uses of Index in org.codehaus.modello.generator.database.sql
 

Methods in org.codehaus.modello.generator.database.sql with parameters of type Index
protected  void SqlBuilder.writeIndex(Table table, Index index)
          Writes one index for a table
 void SqlBuilder.dropIndex(Table table, Index index)
          Generates the statement to drop an index from the database.