Uses of Interface
com.jenkov.mrpersister.itf.mapping.IKey

Packages that use IKey
com.jenkov.mrpersister.impl.mapping   
com.jenkov.mrpersister.itf.mapping   
 

Uses of IKey in com.jenkov.mrpersister.impl.mapping
 

Classes in com.jenkov.mrpersister.impl.mapping that implement IKey
 class Key
          Represents a key, either primary or foreign key, in a database table.
 

Fields in com.jenkov.mrpersister.impl.mapping declared as IKey
protected  IKey ObjectMapping.primaryKey
           
 

Methods in com.jenkov.mrpersister.impl.mapping that return IKey
 IKey ObjectMappingFactory.createKey()
           
 IKey ObjectMapping.getPrimaryKey()
           
 IKey HsqldbPrimaryKeyDeterminer.getPrimaryKeyMapping(java.lang.String table, java.lang.String databaseName, java.sql.Connection connection)
           
 IKey DbPrimaryKeyDeterminer.getPrimaryKeyMapping(java.lang.String table, java.lang.String databaseName, java.sql.Connection connection)
           
 

Methods in com.jenkov.mrpersister.impl.mapping with parameters of type IKey
 void ObjectMapping.setPrimaryKey(IKey primaryKey)
           
 

Uses of IKey in com.jenkov.mrpersister.itf.mapping
 

Methods in com.jenkov.mrpersister.itf.mapping that return IKey
 IKey IObjectMappingFactory.createKey()
          Creates a new IKey instance.
 IKey IObjectMapping.getPrimaryKey()
          Returns the current primary key mapping.
 IKey IDbPrimaryKeyDeterminer.getPrimaryKeyMapping(java.lang.String table, java.lang.String databaseName, java.sql.Connection connection)
          Returns a list of the columns that are part of the
 

Methods in com.jenkov.mrpersister.itf.mapping with parameters of type IKey
 void IObjectMapping.setPrimaryKey(IKey key)
          Sets the current primary key mapping.