org.melati.admin.test.generated
Class SpecialisedBase

Package class diagram package SpecialisedBase
java.lang.Object
  extended by org.melati.poem.transaction.Transactioned
      extended by org.melati.poem.JdbcPersistent
          extended by org.melati.admin.test.generated.SpecialisedBase
All Implemented Interfaces:
Cloneable, org.melati.poem.Persistable, org.melati.poem.Persistent, org.melati.poem.Treeable
Direct Known Subclasses:
Specialised

public abstract class SpecialisedBase
extends org.melati.poem.JdbcPersistent

Melati POEM generated abstract base class for a Persistent Specialised Object.

See Also:
org.melati.poem.prepro.TableDef#generatePersistentBaseJava

Field Summary
protected  Integer id
          id
protected  String name
          name - The name of the thing
 
Fields inherited from class org.melati.poem.transaction.Transactioned
valid
 
Constructor Summary
SpecialisedBase()
           
 
Method Summary
 AdminTestDatabaseTables getAdminTestDatabaseTables()
          Retrieves the Database object.
 Integer getId_unsafe()
          Retrieves the Id value, without locking, for this Specialised Persistent.
 Integer getId()
          Retrieves the Id value, with locking, for this Specialised Persistent.
 org.melati.poem.Field getIdField()
          Retrieves the Id value as a Field from this Specialised Persistent.
 String getName_unsafe()
          Retrieves the Name value, without locking, for this Specialised Persistent.
 String getName()
          Retrieves the Name value, with locking, for this Specialised Persistent.
 org.melati.poem.Field getNameField()
          Retrieves the Name value as a Field from this Specialised Persistent.
 SpecialisedTable getSpecialisedTable()
          Retrieves the SpecialisedTable table which this Persistent is from.
 void setId_unsafe(Integer cooked)
          Sets the Id value directly, without checking, for this Specialised Persistent.
 void setId(int cooked)
          Sets the Id value, with checking, for this Specialised Persistent.
 void setId(Integer cooked)
          Sets the Id value, with checking, for this Specialised Persistent.
 void setName_unsafe(String cooked)
          Sets the Name value directly, without checking, for this Specialised Persistent.
 void setName(String cooked)
          Sets the Name value, with checking, for this Specialised 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

id

protected Integer id
id


name

protected String name
name - The name of the thing

Constructor Detail

SpecialisedBase

public SpecialisedBase()
Method Detail

getAdminTestDatabaseTables

public AdminTestDatabaseTables getAdminTestDatabaseTables()
Retrieves the Database object.

Returns:
the database
See Also:
org.melati.poem.prepro.TableDef#generatePersistentBaseJava

getSpecialisedTable

public SpecialisedTable getSpecialisedTable()
Retrieves the SpecialisedTable table which this Persistent is from.

Returns:
the SpecialisedTable
See Also:
org.melati.poem.prepro.TableDef#generatePersistentBaseJava

getId_unsafe

public Integer getId_unsafe()
Retrieves the Id value, without locking, for this Specialised Persistent.

Returns:
the Integer id
See Also:
org.melati.poem.prepro.FieldDef#generateBaseMethods

setId_unsafe

public void setId_unsafe(Integer cooked)
Sets the Id value directly, without checking, for this Specialised Persistent.

Parameters:
cooked - the pre-validated value to set
See Also:
org.melati.poem.prepro.FieldDef#generateBaseMethods

getId

public Integer getId()
              throws org.melati.poem.AccessPoemException
Retrieves the Id value, with locking, for this Specialised Persistent.

Returns:
the value of the field Id for this Specialised Persistent
Throws:
org.melati.poem.AccessPoemException - if the current AccessToken does not confer write access rights
Generator
org.melati.poem.prepro.AtomFieldDef#generateBaseMethods

setId

public void setId(Integer cooked)
           throws org.melati.poem.AccessPoemException,
                  org.melati.poem.ValidationPoemException
Sets the Id value, with checking, for this Specialised Persistent.

Parameters:
cooked - a validated int
Throws:
org.melati.poem.AccessPoemException - if the current AccessToken does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
Generator
org.melati.poem.prepro.AtomFieldDef#generateBaseMethods

setId

public final void setId(int cooked)
                 throws org.melati.poem.AccessPoemException,
                        org.melati.poem.ValidationPoemException
Sets the Id value, with checking, for this Specialised Persistent.

Parameters:
cooked - a validated int
Throws:
org.melati.poem.AccessPoemException - if the current AccessToken does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
Generator
org.melati.poem.prepro.IntegerFieldDef#generateBaseMethods

getIdField

public org.melati.poem.Field getIdField()
                                 throws org.melati.poem.AccessPoemException
Retrieves the Id value as a Field from this Specialised Persistent.

Returns:
the Integer id
Throws:
org.melati.poem.AccessPoemException - if the current AccessToken does not confer write access rights
See Also:
org.melati.poem.prepro.FieldDef#generateFieldCreator

getName_unsafe

public String getName_unsafe()
Retrieves the Name value, without locking, for this Specialised Persistent.

Returns:
the String name
See Also:
org.melati.poem.prepro.FieldDef#generateBaseMethods

setName_unsafe

public void setName_unsafe(String cooked)
Sets the Name value directly, without checking, for this Specialised Persistent.

Parameters:
cooked - the pre-validated value to set
See Also:
org.melati.poem.prepro.FieldDef#generateBaseMethods

getName

public String getName()
               throws org.melati.poem.AccessPoemException
Retrieves the Name value, with locking, for this Specialised Persistent. Field description: The name of the thing

Specified by:
getName in interface org.melati.poem.Treeable
Overrides:
getName in class org.melati.poem.JdbcPersistent
Returns:
the value of the field Name for this Specialised Persistent
Throws:
org.melati.poem.AccessPoemException - if the current AccessToken does not confer write access rights
Generator
org.melati.poem.prepro.AtomFieldDef#generateBaseMethods

setName

public void setName(String cooked)
             throws org.melati.poem.AccessPoemException,
                    org.melati.poem.ValidationPoemException
Sets the Name value, with checking, for this Specialised Persistent. Field description: The name of the thing

Parameters:
cooked - a validated int
Throws:
org.melati.poem.AccessPoemException - if the current AccessToken does not confer write access rights
org.melati.poem.ValidationPoemException - if the value is not valid
Generator
org.melati.poem.prepro.AtomFieldDef#generateBaseMethods

getNameField

public org.melati.poem.Field getNameField()
                                   throws org.melati.poem.AccessPoemException
Retrieves the Name value as a Field from this Specialised Persistent.

Returns:
the String name
Throws:
org.melati.poem.AccessPoemException - if the current AccessToken does not confer write access rights
See Also:
org.melati.poem.prepro.FieldDef#generateFieldCreator


Copyright © 2000-2010 PanEris. All Rights Reserved.