|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.melati.poem.transaction.Transactioned
org.melati.poem.JdbcPersistent
org.paneris.jammyjoes.model.generated.AgeBase
public abstract class AgeBase
Melati POEM generated abstract base class for a Persistent
Age Object.
| Field Summary | |
|---|---|
protected java.lang.Integer |
id
id |
protected java.lang.Integer |
maxage
Maximum Age |
protected java.lang.Integer |
minage
Minimum Age |
protected java.lang.String |
name
Age name (singular) - Age name (singular) |
protected java.lang.String |
pluralName
Age name (plural) - Age name (plural) |
| Fields inherited from class org.melati.poem.transaction.Transactioned |
|---|
valid |
| Constructor Summary | |
|---|---|
AgeBase()
|
|
| Method Summary | |
|---|---|
AgeTable |
getAgeTable()
Retrieves the AgeTable table
which this Persistent is from. |
java.lang.Integer |
getId_unsafe()
Retrieves the Id value, without locking,
for this Age Persistent. |
java.lang.Integer |
getId()
Retrieves the Id value, with locking, for this Age Persistent. |
org.melati.poem.Field |
getIdField()
Retrieves the Id value as a Field
from this Age Persistent. |
JammyjoesDatabaseTables |
getJammyjoesDatabaseTables()
Retrieves the Database object. |
java.lang.Integer |
getMaxage_unsafe()
Retrieves the Maxage value, without locking,
for this Age Persistent. |
java.lang.Integer |
getMaxage()
Retrieves the Maxage value, with locking, for this Age Persistent. |
org.melati.poem.Field |
getMaxageField()
Retrieves the Maxage value as a Field
from this Age Persistent. |
java.lang.Integer |
getMinage_unsafe()
Retrieves the Minage value, without locking,
for this Age Persistent. |
java.lang.Integer |
getMinage()
Retrieves the Minage value, with locking, for this Age Persistent. |
org.melati.poem.Field |
getMinageField()
Retrieves the Minage value as a Field
from this Age Persistent. |
java.lang.String |
getName_unsafe()
Retrieves the Name value, without locking,
for this Age Persistent. |
java.lang.String |
getName()
Retrieves the Name value, with locking, for this Age Persistent. |
org.melati.poem.Field |
getNameField()
Retrieves the Name value as a Field
from this Age Persistent. |
java.lang.String |
getPluralName_unsafe()
Retrieves the PluralName value, without locking,
for this Age Persistent. |
java.lang.String |
getPluralName()
Retrieves the PluralName value, with locking, for this Age Persistent. |
org.melati.poem.Field |
getPluralNameField()
Retrieves the PluralName value as a Field
from this Age Persistent. |
void |
setId_unsafe(java.lang.Integer cooked)
Sets the Id value directly, without checking,
for this Age Persistent. |
void |
setId(int cooked)
Sets the Id value, with checking, for this
Age Persistent. |
void |
setId(java.lang.Integer cooked)
Sets the Id value, with checking, for this
Age Persistent. |
void |
setMaxage_unsafe(java.lang.Integer cooked)
Sets the Maxage value directly, without checking,
for this Age Persistent. |
void |
setMaxage(int cooked)
Sets the Maxage value, with checking, for this
Age Persistent. |
void |
setMaxage(java.lang.Integer cooked)
Sets the Maxage value, with checking, for this
Age Persistent. |
void |
setMinage_unsafe(java.lang.Integer cooked)
Sets the Minage value directly, without checking,
for this Age Persistent. |
void |
setMinage(int cooked)
Sets the Minage value, with checking, for this
Age Persistent. |
void |
setMinage(java.lang.Integer cooked)
Sets the Minage value, with checking, for this
Age Persistent. |
void |
setName_unsafe(java.lang.String cooked)
Sets the Name value directly, without checking,
for this Age Persistent. |
void |
setName(java.lang.String cooked)
Sets the Name value, with checking, for this
Age Persistent. |
void |
setPluralName_unsafe(java.lang.String cooked)
Sets the PluralName value directly, without checking,
for this Age Persistent. |
void |
setPluralName(java.lang.String cooked)
Sets the PluralName value, with checking, for this
Age Persistent. |
| Methods inherited from class org.melati.poem.JdbcPersistent |
|---|
assertCanCreate, assertCanCreate, assertCanDelete, assertCanDelete, assertCanRead, assertCanRead, assertCanWrite, assertCanWrite, clone, commit, countMatchSQL, delete_unsafe, delete, delete, deleteAndCommit, deleteAndCommit, deleteLock, displayString, displayString, displayString, dump, dump, duplicated, duplicatedFloating, equals, existenceLock, existenceLock, fieldsOfColumns, fromClause, getCanDelete, getCanRead, getCanSelect, getCanWrite, getChildren, getCooked, getCookedString, getDatabase, getDetailDisplayFields, getField, getFields, getPrimaryDisplayField, getRaw, getRawString, getReadable, getRecordDisplayFields, getSearchCriterionFields, getSummaryDisplayFields, getTable, getTroid, hashCode, invalidate, isDirty, load, makePersistent, postEdit, postInsert, postModify, postWrite, preEdit, readLock, readLock, readLock, rollback, setCooked, setDirty, setRaw, setRawString, statusExistent, statusNonexistent, toString, troid, upToDate, writeDown, writeLock, writeLock, writeLock |
| Methods inherited from class org.melati.poem.transaction.Transactioned |
|---|
markValid, reset, setTransactionPool, transactionPool, unSee |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected java.lang.Integer id
protected java.lang.String name
protected java.lang.String pluralName
protected java.lang.Integer minage
protected java.lang.Integer maxage
| Constructor Detail |
|---|
public AgeBase()
| Method Detail |
|---|
public JammyjoesDatabaseTables getJammyjoesDatabaseTables()
public AgeTable getAgeTable()
AgeTable table
which this Persistent is from.
public java.lang.Integer getId_unsafe()
Id value, without locking,
for this Age Persistent.
public void setId_unsafe(java.lang.Integer cooked)
Id value directly, without checking,
for this Age Persistent.
cooked - the pre-validated value to set
public java.lang.Integer getId()
throws org.melati.poem.AccessPoemException
Age Persistent.
Id for this
Age Persistent
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
public void setId(java.lang.Integer cooked)
throws org.melati.poem.AccessPoemException,
org.melati.poem.ValidationPoemException
Id value, with checking, for this
Age Persistent.
cooked - a validated int
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
public final void setId(int cooked)
throws org.melati.poem.AccessPoemException,
org.melati.poem.ValidationPoemException
Id value, with checking, for this
Age Persistent.
cooked - a validated int
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
public org.melati.poem.Field getIdField()
throws org.melati.poem.AccessPoemException
Id value as a Field
from this Age Persistent.
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rightspublic java.lang.String getName_unsafe()
Name value, without locking,
for this Age Persistent.
public void setName_unsafe(java.lang.String cooked)
Name value directly, without checking,
for this Age Persistent.
cooked - the pre-validated value to set
public java.lang.String getName()
throws org.melati.poem.AccessPoemException
Age Persistent.
Field description:
Age name (singular)
getName in interface org.melati.poem.TreeablegetName in class org.melati.poem.JdbcPersistentName for this
Age Persistent
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
public void setName(java.lang.String cooked)
throws org.melati.poem.AccessPoemException,
org.melati.poem.ValidationPoemException
Name value, with checking, for this
Age Persistent.
Field description:
Age name (singular)
cooked - a validated int
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
public org.melati.poem.Field getNameField()
throws org.melati.poem.AccessPoemException
Name value as a Field
from this Age Persistent.
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rightspublic java.lang.String getPluralName_unsafe()
PluralName value, without locking,
for this Age Persistent.
public void setPluralName_unsafe(java.lang.String cooked)
PluralName value directly, without checking,
for this Age Persistent.
cooked - the pre-validated value to set
public java.lang.String getPluralName()
throws org.melati.poem.AccessPoemException
Age Persistent.
Field description:
Age name (plural)
PluralName for this
Age Persistent
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
public void setPluralName(java.lang.String cooked)
throws org.melati.poem.AccessPoemException,
org.melati.poem.ValidationPoemException
PluralName value, with checking, for this
Age Persistent.
Field description:
Age name (plural)
cooked - a validated int
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
public org.melati.poem.Field getPluralNameField()
throws org.melati.poem.AccessPoemException
PluralName value as a Field
from this Age Persistent.
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rightspublic java.lang.Integer getMinage_unsafe()
Minage value, without locking,
for this Age Persistent.
public void setMinage_unsafe(java.lang.Integer cooked)
Minage value directly, without checking,
for this Age Persistent.
cooked - the pre-validated value to set
public java.lang.Integer getMinage()
throws org.melati.poem.AccessPoemException
Age Persistent.
Minage for this
Age Persistent
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
public void setMinage(java.lang.Integer cooked)
throws org.melati.poem.AccessPoemException,
org.melati.poem.ValidationPoemException
Minage value, with checking, for this
Age Persistent.
cooked - a validated int
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
public final void setMinage(int cooked)
throws org.melati.poem.AccessPoemException,
org.melati.poem.ValidationPoemException
Minage value, with checking, for this
Age Persistent.
cooked - a validated int
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
public org.melati.poem.Field getMinageField()
throws org.melati.poem.AccessPoemException
Minage value as a Field
from this Age Persistent.
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rightspublic java.lang.Integer getMaxage_unsafe()
Maxage value, without locking,
for this Age Persistent.
public void setMaxage_unsafe(java.lang.Integer cooked)
Maxage value directly, without checking,
for this Age Persistent.
cooked - the pre-validated value to set
public java.lang.Integer getMaxage()
throws org.melati.poem.AccessPoemException
Age Persistent.
Maxage for this
Age Persistent
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
public void setMaxage(java.lang.Integer cooked)
throws org.melati.poem.AccessPoemException,
org.melati.poem.ValidationPoemException
Maxage value, with checking, for this
Age Persistent.
cooked - a validated int
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
public final void setMaxage(int cooked)
throws org.melati.poem.AccessPoemException,
org.melati.poem.ValidationPoemException
Maxage value, with checking, for this
Age Persistent.
cooked - a validated int
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
public org.melati.poem.Field getMaxageField()
throws org.melati.poem.AccessPoemException
Maxage value as a Field
from this Age Persistent.
org.melati.poem.AccessPoemException - if the current AccessToken
does not confer write access rights
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||