|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.ObjectBaseObject
com.aurel.track.persist.BaseTLocalizedResources
public abstract class BaseTLocalizedResources
You should not use this class directly. It should not even be extended all references should be to TLocalizedResources
| Constructor Summary | |
|---|---|
BaseTLocalizedResources()
|
|
| Method Summary | |
|---|---|
TLocalizedResources |
copy()
Makes a copy of this object. |
TLocalizedResources |
copy(boolean deepcopy)
Makes a copy of this object. |
TLocalizedResources |
copy(boolean deepcopy,
java.sql.Connection con)
Makes a copy of this object using connection. |
TLocalizedResources |
copy(java.sql.Connection con)
Makes a copy of this object using connection. |
protected TLocalizedResources |
copyInto(TLocalizedResources copyObj)
Fills the copyObj with the contents of this object. |
protected TLocalizedResources |
copyInto(TLocalizedResources copyObj,
boolean deepcopy)
Fills the copyObj with the contents of this object. |
protected TLocalizedResources |
copyInto(TLocalizedResources copyObj,
boolean deepcopy,
java.sql.Connection con)
Fills the copyObj with the contents of this object using connection. |
protected TLocalizedResources |
copyInto(TLocalizedResources copyObj,
java.sql.Connection con)
Fills the copyObj with the contents of this object using connection. |
static TLocalizedResources |
createTLocalizedResources(TLocalizedResourcesBean bean)
Creates an instance of TLocalizedResources with the contents of a TLocalizedResourcesBean. |
static TLocalizedResources |
createTLocalizedResources(TLocalizedResourcesBean bean,
IdentityMap createdObjects)
Creates an instance of TLocalizedResources with the contents of a TLocalizedResourcesBean. |
TLocalizedResourcesBean |
getBean()
Creates a TLocalizedResourcesBean with the contents of this object This also creates beans for cached related objects, if they exist |
TLocalizedResourcesBean |
getBean(IdentityMap createdBeans)
Creates a TLocalizedResourcesBean with the contents of this object intended for internal use only |
java.lang.Object |
getByName(java.lang.String name)
Retrieves a field from the object by field (Java) name passed in as a String. |
java.lang.Object |
getByPeerName(java.lang.String name)
Retrieves a field from the object by name passed in as a String. |
java.lang.Object |
getByPosition(int pos)
Retrieves a field from the object by Position as specified in the xml schema. |
java.lang.String |
getFieldName()
Get the FieldName |
static java.util.List |
getFieldNames()
Generate a list of field names. |
java.lang.String |
getLocale()
Get the Locale |
java.lang.String |
getLocalizedText()
Get the LocalizedText |
java.lang.Integer |
getObjectID()
Get the ObjectID |
TLocalizedResourcesPeer |
getPeer()
returns a peer instance associated with this om. |
ObjectKey |
getPrimaryKey()
returns an id that differentiates this object from others of its class. |
java.lang.Integer |
getPrimaryKeyValue()
Get the PrimaryKeyValue |
TableMap |
getTableMap()
Retrieves the TableMap object related to this Table data without compiler warnings of using getPeer().getTableMap(). |
java.lang.String |
getTableName()
Get the TableName |
void |
save()
Stores the object in the database. |
void |
save(java.sql.Connection con)
Stores the object in the database. |
void |
save(java.lang.String dbName)
Stores the object in the database. |
boolean |
setByName(java.lang.String name,
java.lang.Object value)
Set a field in the object by field (Java) name. |
boolean |
setByPeerName(java.lang.String name,
java.lang.Object value)
Set field values by Peer Field Name |
boolean |
setByPosition(int position,
java.lang.Object value)
Set field values by its position (zero based) in the XML schema. |
void |
setFieldName(java.lang.String v)
Set the value of FieldName |
void |
setLocale(java.lang.String v)
Set the value of Locale |
void |
setLocalizedText(java.lang.String v)
Set the value of LocalizedText |
void |
setObjectID(java.lang.Integer v)
Set the value of ObjectID |
void |
setPrimaryKey(ObjectKey key)
Set the PrimaryKey using ObjectKey. |
void |
setPrimaryKeyValue(java.lang.Integer v)
Set the value of PrimaryKeyValue |
void |
setTableName(java.lang.String v)
Set the value of TableName |
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public BaseTLocalizedResources()
| Method Detail |
|---|
public java.lang.Integer getObjectID()
public void setObjectID(java.lang.Integer v)
v - new valuepublic java.lang.String getTableName()
public void setTableName(java.lang.String v)
v - new valuepublic java.lang.Integer getPrimaryKeyValue()
public void setPrimaryKeyValue(java.lang.Integer v)
v - new valuepublic java.lang.String getFieldName()
public void setFieldName(java.lang.String v)
v - new valuepublic java.lang.String getLocalizedText()
public void setLocalizedText(java.lang.String v)
v - new valuepublic java.lang.String getLocale()
public void setLocale(java.lang.String v)
v - new valuepublic static java.util.List getFieldNames()
public java.lang.Object getByName(java.lang.String name)
name - field name
public boolean setByName(java.lang.String name,
java.lang.Object value)
throws TorqueException,
java.lang.IllegalArgumentException
name - field namevalue - field value
java.lang.IllegalArgumentException - if object type of value does not match field object type.
TorqueException - If a problem occurs with the set[Field] method.public java.lang.Object getByPeerName(java.lang.String name)
name - peer name
public boolean setByPeerName(java.lang.String name,
java.lang.Object value)
throws TorqueException,
java.lang.IllegalArgumentException
name - field namevalue - field value
java.lang.IllegalArgumentException - if object type of value does not match field object type.
TorqueException - If a problem occurs with the set[Field] method.public java.lang.Object getByPosition(int pos)
pos - position in xml schema
public boolean setByPosition(int position,
java.lang.Object value)
throws TorqueException,
java.lang.IllegalArgumentException
position - The field positionvalue - field value
java.lang.IllegalArgumentException - if object type of value does not match field object type.
TorqueException - If a problem occurs with the set[Field] method.
public void save()
throws java.lang.Exception
java.lang.Exception
public void save(java.lang.String dbName)
throws TorqueException
dbName -
TorqueException
public void save(java.sql.Connection con)
throws TorqueException
con -
TorqueExceptionpublic void setPrimaryKey(ObjectKey key)
key - objectID ObjectKeypublic ObjectKey getPrimaryKey()
public TLocalizedResources copy()
throws TorqueException
TorqueException
public TLocalizedResources copy(java.sql.Connection con)
throws TorqueException
con - the database connection to read associated objects.
TorqueException
public TLocalizedResources copy(boolean deepcopy)
throws TorqueException
deepcopy - whether to copy the associated objects.
TorqueException
public TLocalizedResources copy(boolean deepcopy,
java.sql.Connection con)
throws TorqueException
deepcopy - whether to copy the associated objects.con - the database connection to read associated objects.
TorqueException
protected TLocalizedResources copyInto(TLocalizedResources copyObj)
throws TorqueException
copyObj - the object to fill.
TorqueException
protected TLocalizedResources copyInto(TLocalizedResources copyObj,
java.sql.Connection con)
throws TorqueException
copyObj - the object to fill.con - the database connection to read associated objects.
TorqueException
protected TLocalizedResources copyInto(TLocalizedResources copyObj,
boolean deepcopy)
throws TorqueException
copyObj - the object to fill.deepcopy - whether the associated objects should be copied.
TorqueException
protected TLocalizedResources copyInto(TLocalizedResources copyObj,
boolean deepcopy,
java.sql.Connection con)
throws TorqueException
copyObj - the object to fill.deepcopy - whether the associated objects should be copied.con - the database connection to read associated objects.
TorqueExceptionpublic TLocalizedResourcesPeer getPeer()
public TableMap getTableMap()
throws TorqueException
TorqueExceptionpublic TLocalizedResourcesBean getBean()
public TLocalizedResourcesBean getBean(IdentityMap createdBeans)
createdBeans - a IdentityMap which maps objects
to already created beans
public static TLocalizedResources createTLocalizedResources(TLocalizedResourcesBean bean)
throws TorqueException
bean - the TLocalizedResourcesBean which contents are used to create
the resulting class
TorqueException
public static TLocalizedResources createTLocalizedResources(TLocalizedResourcesBean bean,
IdentityMap createdObjects)
throws TorqueException
bean - the TLocalizedResourcesBean which contents are used to create
the resulting classcreatedObjects - a IdentityMap which maps beans
to already created objects
TorqueExceptionpublic java.lang.String toString()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||