| java.lang.Object net.sf.persist.Mapping net.sf.persist.NoTableMapping
NoTableMapping | public class NoTableMapping extends Mapping (Code) | | Represents the mapping of columns to getters and setters of a POJO.
It is used when a class specifies a
net.sf.persist.annotations.NoTable NoTable annotation, which means
the class is not mapped to a table in the database, and will be only used to
store data from queries.
|
getFieldNameForColumn | public String getFieldNameForColumn(String columnName)(Code) | | Returns the field name associated with a given column. If a mapping can't
be found, will throw a PersistException.
|
getGetterForColumn | public Method getGetterForColumn(String columnName)(Code) | | Returns the getter method associated with a given column. If a mapping
can't be found, will throw a PersistException.
See Also: Mapping |
getSetterForColumn | public Method getSetterForColumn(String columnName)(Code) | | Returns the setter method associated with a given column. If a mapping
can't be found, will throw a PersistException.
See Also: Mapping |
|
|