| Package | Description |
|---|---|
| org.melati.poem |
Persistent Object Engine for Melati.
|
| org.melati.poem.generated |
The POEM-generated support classes for org.melati.poem.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AccessibleCreationException
Thrown when an unauthorised attempt to create an object is made.
|
class |
ColumnRenamePoemException
Column renaming is not supported by Postgresql.
|
class |
CreationAccessPoemException
Thrown when unauthorised creation of a new object is attempted.
|
class |
DeletePersistentAccessPoemException
Thrown when an unauthorised delete of a
Persistent is
attempted. |
class |
FieldAccessPoemException
Thrown when an unauthorised access of a
Field
of a Persistent is attempted. |
class |
PersistentAccessPoemException
Thrown when an unauthorised access of a
Persistent is attempted. |
class |
ReadFieldAccessPoemException
Thrown when an unauthorised read of a
Field
of a Persistent is attempted. |
class |
ReadPasswordAccessPoemException
|
class |
ReadPersistentAccessPoemException
Thrown when an unauthorised read of a
Persistent
is attempted. |
class |
TableRenamePoemException
|
class |
WriteFieldAccessPoemException
Thrown when an unauthorised write of a
Field
of a Persistent is attempted. |
class |
WritePersistentAccessPoemException
Thrown when an unauthorised delete of a
Persistent
is attempted. |
| Modifier and Type | Method and Description |
|---|---|
void |
Persistent.assertCanCreate() |
void |
JdbcPersistent.assertCanCreate() |
void |
Persistent.assertCanDelete() |
void |
JdbcPersistent.assertCanDelete() |
void |
Persistent.assertCanDelete(AccessToken token)
Check that you have delete access to the object.
|
void |
JdbcPersistent.assertCanDelete(AccessToken token)
Check that you have delete access to the object.
|
void |
Persistent.assertCanRead() |
void |
JdbcPersistent.assertCanRead() |
void |
Persistent.assertCanRead(AccessToken token)
Check that you have read access to the object.
|
void |
JdbcPersistent.assertCanRead(AccessToken token)
Check that you have read access to the object.
|
void |
Persistent.assertCanWrite() |
void |
JdbcPersistent.assertCanWrite() |
void |
Persistent.assertCanWrite(AccessToken token)
Check that you have write access to the object.
|
void |
JdbcPersistent.assertCanWrite(AccessToken token)
Check that you have write access to the object.
|
static void |
PoemThread.assertHasCapability(Capability capability)
Check that we have the given
Capability, throw an
AccessPoemException if we don't. |
Persistent |
Table.create(Initialiser initialiser)
Create a new object (record) in the table.
|
Persistent |
JdbcTable.create(Initialiser initialiser)
Create a new object (record) in the table.
|
void |
Table.create(Persistent p)
Write a new row containing the given object.
|
void |
JdbcTable.create(Persistent p)
Write a new row containing the given object.
|
void |
Persistent.deleteAndCommit()
Convenience method with default integrity fix.
|
void |
JdbcPersistent.deleteAndCommit()
Convenience method with default integrity fix.
|
void |
Persistent.deleteAndCommit(Map<Column<?>,IntegrityFix> integrityFixOfColumn)
Delete the object, with even more safety checks for referential integrity.
|
void |
JdbcPersistent.deleteAndCommit(Map<Column<?>,IntegrityFix> integrityFixOfColumn)
Delete the object, with even more safety checks for referential integrity.
|
String |
Persistent.displayString() |
String |
JdbcPersistent.displayString() |
String |
Persistent.displayString(PoemLocale locale)
Defaults to DateFormat.MEDIUM.
|
String |
JdbcPersistent.displayString(PoemLocale locale)
Defaults to DateFormat.MEDIUM.
|
String |
Persistent.displayString(PoemLocale locale,
int style)
A string describing the object for the purposes of rendering it in lists
presented to the user.
|
String |
JdbcPersistent.displayString(PoemLocale locale,
int style)
A string describing the object for the purposes of rendering it in lists
presented to the user.
|
Persistent |
Persistent.duplicated()
Create a new object like this one.
|
Persistent |
JdbcPersistent.duplicated()
Create a new object like this one.
|
Persistent |
Persistent.duplicatedFloating()
Create a new persistent like this one, regardless of
whether this Persistent has been written to the dbms yet.
|
Persistent |
JdbcPersistent.duplicatedFloating()
Create a new persistent like this one, regardless of
whether this Persistent has been written to the dbms yet.
|
Object |
Field.getCooked() |
Object |
ExtraColumn.getCooked(Persistent g)
Retrieves the field value, with locking and access control
for this
Column. |
abstract Object |
Column.getCooked(Persistent g)
Retrieves the field value, with locking and access control
for this
Column. |
Object |
Persistent.getCooked(String name)
The `true value' of one of the object's fields.
|
Object |
JdbcPersistent.getCooked(String name)
The `true value' of one of the object's fields.
|
String |
Field.getCookedString() |
String |
Field.getCookedString(PoemLocale locale,
int style) |
String |
Persistent.getCookedString(String name,
PoemLocale locale,
int style)
A string representation of the `true value' of one of the object's fields.
|
String |
JdbcPersistent.getCookedString(String name,
PoemLocale locale,
int style)
A string representation of the `true value' of one of the object's fields.
|
Field<?> |
Persistent.getField(String name)
The value of one of the object's fields, wrapped up with type information
sufficient for rendering it.
|
Field<?> |
JdbcPersistent.getField(String name)
The value of one of the object's fields, wrapped up with type information
sufficient for rendering it.
|
String |
User.getPassword()
Will throw a ReadPasswordAccessPoemException unless the access
token associated with the running thread is the User object
itself or provides the readPasswords capability.
|
T |
Field.getRaw()
Get the value of the Field.
|
T |
ExtraColumn.getRaw(Persistent g)
Retrieves the field value, with locking,
for this
Column. |
abstract Object |
Column.getRaw(Persistent g)
Retrieves the field value, with locking,
for this
Column. |
Object |
Persistent.getRaw(String name)
The `identifying value' of one of the object's fields.
|
Object |
JdbcPersistent.getRaw(String name)
The `identifying value' of one of the object's fields.
|
Object |
Field.getRawString()
Get the value as a String.
|
String |
Persistent.getRawString(String name)
A string representation of the `identifying value' of one of the object's
fields.
|
String |
JdbcPersistent.getRawString(String name)
A string representation of the `identifying value' of one of the object's
fields.
|
Integer |
Persistable.getTroid()
The object's troid, returned after access check.
|
Integer |
JdbcPersistent.getTroid()
The object's troid.
|
void |
Initialiser.init(Persistent object)
Initialise a freshly generated POEM object.
|
boolean |
Field.sameRawAs(Field<T> other)
Compare raws.
|
void |
PoemType.saveColumnInfo(ColumnInfo columnInfo)
Set the type of the ColumnInfo.
|
void |
BasePoemType.saveColumnInfo(ColumnInfo info)
Set the type of the ColumnInfo.
|
void |
TableInfo.setCachelimit(Integer limit)
Set here and in table we represent.
|
void |
ExtraColumn.setCooked(Persistent g,
Object cooked)
Sets the field value, with locking, access control
and validation for this
Column. |
abstract void |
Column.setCooked(Persistent g,
Object cooked)
Sets the field value, with locking, access control
and validation for this
Column. |
void |
Persistent.setCooked(String name,
Object cooked)
Set the `true value' of one of the record's fields.
|
void |
JdbcPersistent.setCooked(String name,
Object cooked)
Set the `true value' of one of the record's fields.
|
void |
User.setPassword(String cooked)
Sets the
Password value, with checking, for this
user Persistent. |
void |
ExtraColumn.setRaw(Persistent g,
Object raw)
Sets the field value, with locking,
for this
Column. |
abstract void |
Column.setRaw(Persistent g,
Object raw)
Sets the field value, with locking,
for this
Column. |
void |
Persistent.setRaw(String name,
Object raw)
Set the `identifying value' of one of the record's fields.
|
void |
JdbcPersistent.setRaw(String name,
Object raw)
Set the `identifying value' of one of the record's fields.
|
void |
Persistent.setRawString(String name,
String string)
Set the `identifying value' of one of the record's fields from a string
representation.
|
void |
JdbcPersistent.setRawString(String name,
String string)
Set the `identifying value' of one of the record's fields from a string
representation.
|
void |
TableInfo.setSeqcached(Boolean b)
Set here and in table we represent.
|
void |
ColumnInfo.setTableinfoTroid(Integer raw)
Set the TableInfo reference.
|
| Constructor and Description |
|---|
AccessibleCreationException(AccessPoemException e) |
AccessPoemException(AccessPoemException e) |
Field(AccessPoemException accessException,
FieldAttributes<T> attrs)
Constructor for a Field with an access violation.
|
| Modifier and Type | Method and Description |
|---|---|
Integer |
TableInfoBase.getCachelimit()
Retrieves the Cachelimit value, with locking, for this
tableInfo Persistent. |
Field<Integer> |
TableInfoBase.getCachelimitField()
Retrieves the
Cachelimit value as a Field
from this tableInfo Persistent. |
Capability |
TableInfoBase.getCancreate()
Retrieves the
Cancreate object referred to. |
Field<Integer> |
TableInfoBase.getCancreateField()
Retrieves the
Cancreate value as a Field
from this tableInfo Persistent. |
Integer |
TableInfoBase.getCancreateTroid()
Retrieves the Table Row Object ID.
|
Capability |
GroupCapabilityBase.getCapability()
Retrieves the
Capability object referred to. |
Field<Integer> |
GroupCapabilityBase.getCapabilityField()
Retrieves the
Capability value as a Field
from this groupCapability Persistent. |
Integer |
GroupCapabilityBase.getCapabilityTroid()
Retrieves the Table Row Object ID.
|
TableCategory |
TableInfoBase.getCategory()
Retrieves the
Category object referred to. |
Field<Integer> |
TableInfoBase.getCategoryField()
Retrieves the
Category value as a Field
from this tableInfo Persistent. |
Integer |
TableInfoBase.getCategoryTroid()
Retrieves the Table Row Object ID.
|
Capability |
TableInfoBase.getDefaultcandelete()
Retrieves the
Defaultcandelete object referred to. |
Field<Integer> |
TableInfoBase.getDefaultcandeleteField()
Retrieves the
Defaultcandelete value as a Field
from this tableInfo Persistent. |
Integer |
TableInfoBase.getDefaultcandeleteTroid()
Retrieves the Table Row Object ID.
|
Capability |
TableInfoBase.getDefaultcanread()
Retrieves the
Defaultcanread object referred to. |
Field<Integer> |
TableInfoBase.getDefaultcanreadField()
Retrieves the
Defaultcanread value as a Field
from this tableInfo Persistent. |
Integer |
TableInfoBase.getDefaultcanreadTroid()
Retrieves the Table Row Object ID.
|
Capability |
TableInfoBase.getDefaultcanwrite()
Retrieves the
Defaultcanwrite object referred to. |
Field<Integer> |
TableInfoBase.getDefaultcanwriteField()
Retrieves the
Defaultcanwrite value as a Field
from this tableInfo Persistent. |
Integer |
TableInfoBase.getDefaultcanwriteTroid()
Retrieves the Table Row Object ID.
|
String |
ValueInfoBase.getDescription()
Retrieves the Description value, with locking, for this
ValueInfo Persistent. |
String |
TableInfoBase.getDescription()
Retrieves the Description value, with locking, for this
tableInfo Persistent. |
Field<String> |
ValueInfoBase.getDescriptionField()
Retrieves the
Description value as a Field
from this ValueInfo Persistent. |
Field<String> |
TableInfoBase.getDescriptionField()
Retrieves the
Description value as a Field
from this tableInfo Persistent. |
DisplayLevel |
ColumnInfoBase.getDisplaylevel()
Retrieves the Displaylevel value
of this
Persistent. |
Field<Integer> |
ColumnInfoBase.getDisplaylevelField()
Retrieves the
Displaylevel value as a Field
from this columnInfo Persistent. |
Integer |
ColumnInfoBase.getDisplaylevelIndex()
Retrieves the Displaylevel index value
of this
Persistent. |
String |
ValueInfoBase.getDisplayname()
Retrieves the Displayname value, with locking, for this
ValueInfo Persistent. |
String |
TableInfoBase.getDisplayname()
Retrieves the Displayname value, with locking, for this
tableInfo Persistent. |
Field<String> |
ValueInfoBase.getDisplaynameField()
Retrieves the
Displayname value as a Field
from this ValueInfo Persistent. |
Field<String> |
TableInfoBase.getDisplaynameField()
Retrieves the
Displayname value as a Field
from this tableInfo Persistent. |
Integer |
TableInfoBase.getDisplayorder()
Retrieves the Displayorder value, with locking, for this
tableInfo Persistent. |
Integer |
ColumnInfoBase.getDisplayorder()
Retrieves the Displayorder value, with locking, for this
columnInfo Persistent. |
Field<Integer> |
TableInfoBase.getDisplayorderField()
Retrieves the
Displayorder value as a Field
from this tableInfo Persistent. |
Field<Integer> |
ColumnInfoBase.getDisplayorderField()
Retrieves the
Displayorder value as a Field
from this columnInfo Persistent. |
Integer |
ColumnInfoBase.getDisplayorderpriority()
Retrieves the Displayorderpriority value, with locking, for this
columnInfo Persistent. |
Field<Integer> |
ColumnInfoBase.getDisplayorderpriorityField()
Retrieves the
Displayorderpriority value as a Field
from this columnInfo Persistent. |
Group |
GroupMembershipBase.getGroup()
Retrieves the
Group object referred to. |
Group |
GroupCapabilityBase.getGroup()
Retrieves the
Group object referred to. |
Field<Integer> |
GroupMembershipBase.getGroupField()
Retrieves the
Group value as a Field
from this groupMembership Persistent. |
Field<Integer> |
GroupCapabilityBase.getGroupField()
Retrieves the
Group value as a Field
from this groupCapability Persistent. |
Integer |
GroupMembershipBase.getGroupTroid()
Retrieves the Table Row Object ID.
|
Integer |
GroupCapabilityBase.getGroupTroid()
Retrieves the Table Row Object ID.
|
Integer |
ValueInfoBase.getHeight()
Retrieves the Height value, with locking, for this
ValueInfo Persistent. |
Field<Integer> |
ValueInfoBase.getHeightField()
Retrieves the
Height value as a Field
from this ValueInfo Persistent. |
Integer |
UserBase.getId()
Retrieves the Id value, with locking, for this
user Persistent. |
Integer |
TableInfoBase.getId()
Retrieves the Id value, with locking, for this
tableInfo Persistent. |
Integer |
TableCategoryBase.getId()
Retrieves the Id value, with locking, for this
tableCategory Persistent. |
Integer |
SettingBase.getId()
Retrieves the Id value, with locking, for this
setting Persistent. |
Integer |
GroupMembershipBase.getId()
Retrieves the Id value, with locking, for this
groupMembership Persistent. |
Integer |
GroupCapabilityBase.getId()
Retrieves the Id value, with locking, for this
groupCapability Persistent. |
Integer |
GroupBase.getId()
Retrieves the Id value, with locking, for this
group Persistent. |
Integer |
ColumnInfoBase.getId()
Retrieves the Id value, with locking, for this
columnInfo Persistent. |
Integer |
CapabilityBase.getId()
Retrieves the Id value, with locking, for this
capability Persistent. |
Field<Integer> |
UserBase.getIdField()
Retrieves the
Id value as a Field
from this user Persistent. |
Field<Integer> |
TableInfoBase.getIdField()
Retrieves the
Id value as a Field
from this tableInfo Persistent. |
Field<Integer> |
TableCategoryBase.getIdField()
Retrieves the
Id value as a Field
from this tableCategory Persistent. |
Field<Integer> |
SettingBase.getIdField()
Retrieves the
Id value as a Field
from this setting Persistent. |
Field<Integer> |
GroupMembershipBase.getIdField()
Retrieves the
Id value as a Field
from this groupMembership Persistent. |
Field<Integer> |
GroupCapabilityBase.getIdField()
Retrieves the
Id value as a Field
from this groupCapability Persistent. |
Field<Integer> |
GroupBase.getIdField()
Retrieves the
Id value as a Field
from this group Persistent. |
Field<Integer> |
ColumnInfoBase.getIdField()
Retrieves the
Id value as a Field
from this columnInfo Persistent. |
Field<Integer> |
CapabilityBase.getIdField()
Retrieves the
Id value as a Field
from this capability Persistent. |
Boolean |
ColumnInfoBase.getIndexed()
Retrieves the Indexed value, with locking, for this
columnInfo Persistent. |
Field<Boolean> |
ColumnInfoBase.getIndexedField()
Retrieves the
Indexed value as a Field
from this columnInfo Persistent. |
StandardIntegrityFix |
ColumnInfoBase.getIntegrityfix()
Retrieves the Integrityfix value
of this
Persistent. |
Field<Integer> |
ColumnInfoBase.getIntegrityfixField()
Retrieves the
Integrityfix value as a Field
from this columnInfo Persistent. |
Integer |
ColumnInfoBase.getIntegrityfixIndex()
Retrieves the Integrityfix index value
of this
Persistent. |
String |
UserBase.getLogin()
Retrieves the Login value, with locking, for this
user Persistent. |
Field<String> |
UserBase.getLoginField()
Retrieves the
Login value as a Field
from this user Persistent. |
String |
UserBase.getName()
Retrieves the Name value, with locking, for this
user Persistent. |
String |
TableInfoBase.getName()
Retrieves the Name value, with locking, for this
tableInfo Persistent. |
String |
TableCategoryBase.getName()
Retrieves the Name value, with locking, for this
tableCategory Persistent. |
String |
SettingBase.getName()
Retrieves the Name value, with locking, for this
setting Persistent. |
String |
GroupBase.getName()
Retrieves the Name value, with locking, for this
group Persistent. |
String |
ColumnInfoBase.getName()
Retrieves the Name value, with locking, for this
columnInfo Persistent. |
String |
CapabilityBase.getName()
Retrieves the Name value, with locking, for this
capability Persistent. |
Field<String> |
UserBase.getNameField()
Retrieves the
Name value as a Field
from this user Persistent. |
Field<String> |
TableInfoBase.getNameField()
Retrieves the
Name value as a Field
from this tableInfo Persistent. |
Field<String> |
TableCategoryBase.getNameField()
Retrieves the
Name value as a Field
from this tableCategory Persistent. |
Field<String> |
SettingBase.getNameField()
Retrieves the
Name value as a Field
from this setting Persistent. |
Field<String> |
GroupBase.getNameField()
Retrieves the
Name value as a Field
from this group Persistent. |
Field<String> |
ColumnInfoBase.getNameField()
Retrieves the
Name value as a Field
from this columnInfo Persistent. |
Field<String> |
CapabilityBase.getNameField()
Retrieves the
Name value as a Field
from this capability Persistent. |
Boolean |
ValueInfoBase.getNullable()
Retrieves the Nullable value, with locking, for this
ValueInfo Persistent. |
Field<Boolean> |
ValueInfoBase.getNullableField()
Retrieves the
Nullable value as a Field
from this ValueInfo Persistent. |
String |
UserBase.getPassword()
Retrieves the Password value, with locking, for this
user Persistent. |
Field<String> |
UserBase.getPasswordField()
Retrieves the
Password value as a Field
from this user Persistent. |
Integer |
ValueInfoBase.getPrecision()
Retrieves the Precision value, with locking, for this
ValueInfo Persistent. |
Field<Integer> |
ValueInfoBase.getPrecisionField()
Retrieves the
Precision value as a Field
from this ValueInfo Persistent. |
String |
ValueInfoBase.getRangelimit_string()
Retrieves the Rangelimit_string value, with locking, for this
ValueInfo Persistent. |
Field<String> |
ValueInfoBase.getRangelimit_stringField()
Retrieves the
Rangelimit_string value as a Field
from this ValueInfo Persistent. |
String |
ValueInfoBase.getRangelow_string()
Retrieves the Rangelow_string value, with locking, for this
ValueInfo Persistent. |
Field<String> |
ValueInfoBase.getRangelow_stringField()
Retrieves the
Rangelow_string value as a Field
from this ValueInfo Persistent. |
String |
ValueInfoBase.getRenderinfo()
Retrieves the Renderinfo value, with locking, for this
ValueInfo Persistent. |
Field<String> |
ValueInfoBase.getRenderinfoField()
Retrieves the
Renderinfo value as a Field
from this ValueInfo Persistent. |
Integer |
ValueInfoBase.getScale()
Retrieves the Scale value, with locking, for this
ValueInfo Persistent. |
Field<Integer> |
ValueInfoBase.getScaleField()
Retrieves the
Scale value as a Field
from this ValueInfo Persistent. |
Searchability |
ColumnInfoBase.getSearchability()
Retrieves the Searchability value
of this
Persistent. |
Field<Integer> |
ColumnInfoBase.getSearchabilityField()
Retrieves the
Searchability value as a Field
from this columnInfo Persistent. |
Integer |
ColumnInfoBase.getSearchabilityIndex()
Retrieves the Searchability index value
of this
Persistent. |
Boolean |
TableInfoBase.getSeqcached()
Retrieves the Seqcached value, with locking, for this
tableInfo Persistent. |
Field<Boolean> |
TableInfoBase.getSeqcachedField()
Retrieves the
Seqcached value as a Field
from this tableInfo Persistent. |
Integer |
ValueInfoBase.getSize()
Retrieves the Size value, with locking, for this
ValueInfo Persistent. |
Field<Integer> |
ValueInfoBase.getSizeField()
Retrieves the
Size value as a Field
from this ValueInfo Persistent. |
Boolean |
ColumnInfoBase.getSortdescending()
Retrieves the Sortdescending value, with locking, for this
columnInfo Persistent. |
Field<Boolean> |
ColumnInfoBase.getSortdescendingField()
Retrieves the
Sortdescending value as a Field
from this columnInfo Persistent. |
TableInfo |
ColumnInfoBase.getTableinfo()
Retrieves the
Tableinfo object referred to. |
Field<Integer> |
ColumnInfoBase.getTableinfoField()
Retrieves the
Tableinfo value as a Field
from this columnInfo Persistent. |
Integer |
ColumnInfoBase.getTableinfoTroid()
Retrieves the Table Row Object ID.
|
PoemTypeFactory |
ValueInfoBase.getTypefactory()
Retrieves the
Typefactory value as an PoemTypeFactory for this Column of the ValueInfo Table. |
Integer |
ValueInfoBase.getTypefactoryCode()
Retrieves the
Typefactory value as an Integer for this Column of the ValueInfo Table. |
Field<Integer> |
ValueInfoBase.getTypefactoryField()
Retrieves the
Typefactory value as a Field
from this ValueInfo Persistent. |
Boolean |
ColumnInfoBase.getUnique()
Retrieves the Unique value, with locking, for this
columnInfo Persistent. |
Field<Boolean> |
ColumnInfoBase.getUniqueField()
Retrieves the
Unique value as a Field
from this columnInfo Persistent. |
User |
GroupMembershipBase.getUser()
Retrieves the
User object referred to. |
Boolean |
ColumnInfoBase.getUsercreateable()
Retrieves the Usercreateable value, with locking, for this
columnInfo Persistent. |
Field<Boolean> |
ColumnInfoBase.getUsercreateableField()
Retrieves the
Usercreateable value as a Field
from this columnInfo Persistent. |
Boolean |
ValueInfoBase.getUsereditable()
Retrieves the Usereditable value, with locking, for this
ValueInfo Persistent. |
Field<Boolean> |
ValueInfoBase.getUsereditableField()
Retrieves the
Usereditable value as a Field
from this ValueInfo Persistent. |
Field<Integer> |
GroupMembershipBase.getUserField()
Retrieves the
User value as a Field
from this groupMembership Persistent. |
Integer |
GroupMembershipBase.getUserTroid()
Retrieves the Table Row Object ID.
|
String |
SettingBase.getValue()
Retrieves the Value value, with locking, for this
setting Persistent. |
Field<String> |
SettingBase.getValueField()
Retrieves the
Value value as a Field
from this setting Persistent. |
Integer |
ValueInfoBase.getWidth()
Retrieves the Width value, with locking, for this
ValueInfo Persistent. |
Field<Integer> |
ValueInfoBase.getWidthField()
Retrieves the
Width value as a Field
from this ValueInfo Persistent. |
void |
TableInfoBase.setCachelimit(int cooked)
Sets the
Cachelimit value, with checking, for this
tableInfo Persistent. |
void |
TableInfoBase.setCachelimit(Integer cooked)
Sets the
Cachelimit value, with checking, for this
tableInfo Persistent. |
void |
TableInfoBase.setCancreate(Capability cooked)
Set the Cancreate.
|
void |
TableInfoBase.setCancreateTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
GroupCapabilityBase.setCapability(Capability cooked)
Set the Capability.
|
void |
GroupCapabilityBase.setCapabilityTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
TableInfoBase.setCategory(TableCategory cooked)
Set the Category.
|
void |
TableInfoBase.setCategoryTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
TableInfoBase.setDefaultcandelete(Capability cooked)
Set the Defaultcandelete.
|
void |
TableInfoBase.setDefaultcandeleteTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
TableInfoBase.setDefaultcanread(Capability cooked)
Set the Defaultcanread.
|
void |
TableInfoBase.setDefaultcanreadTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
TableInfoBase.setDefaultcanwrite(Capability cooked)
Set the Defaultcanwrite.
|
void |
TableInfoBase.setDefaultcanwriteTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
ValueInfoBase.setDescription(String cooked)
Sets the
Description value, with checking, for this
ValueInfo Persistent. |
void |
TableInfoBase.setDescription(String cooked)
Sets the
Description value, with checking, for this
tableInfo Persistent. |
void |
ColumnInfoBase.setDisplaylevel(DisplayLevel cooked)
Sets the
Displaylevel value, with checking, for the Persistent argument. |
void |
ColumnInfoBase.setDisplaylevelIndex(Integer raw)
Sets the
Displaylevel index value, with checking,
for this Persistent. |
void |
ValueInfoBase.setDisplayname(String cooked)
Sets the
Displayname value, with checking, for this
ValueInfo Persistent. |
void |
TableInfoBase.setDisplayname(String cooked)
Sets the
Displayname value, with checking, for this
tableInfo Persistent. |
void |
TableInfoBase.setDisplayorder(int cooked)
Sets the
Displayorder value, with checking, for this
tableInfo Persistent. |
void |
ColumnInfoBase.setDisplayorder(int cooked)
Sets the
Displayorder value, with checking, for this
columnInfo Persistent. |
void |
TableInfoBase.setDisplayorder(Integer cooked)
Sets the
Displayorder value, with checking, for this
tableInfo Persistent. |
void |
ColumnInfoBase.setDisplayorder(Integer cooked)
Sets the
Displayorder value, with checking, for this
columnInfo Persistent. |
void |
ColumnInfoBase.setDisplayorderpriority(int cooked)
Sets the
Displayorderpriority value, with checking, for this
columnInfo Persistent. |
void |
ColumnInfoBase.setDisplayorderpriority(Integer cooked)
Sets the
Displayorderpriority value, with checking, for this
columnInfo Persistent. |
void |
GroupMembershipBase.setGroup(Group cooked)
Set the Group.
|
void |
GroupCapabilityBase.setGroup(Group cooked)
Set the Group.
|
void |
GroupMembershipBase.setGroupTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
GroupCapabilityBase.setGroupTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
ValueInfoBase.setHeight(int cooked)
Sets the
Height value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setHeight(Integer cooked)
Sets the
Height value, with checking, for this
ValueInfo Persistent. |
void |
UserBase.setId(int cooked)
Sets the
Id value, with checking, for this
user Persistent. |
void |
TableInfoBase.setId(int cooked)
Sets the
Id value, with checking, for this
tableInfo Persistent. |
void |
TableCategoryBase.setId(int cooked)
Sets the
Id value, with checking, for this
tableCategory Persistent. |
void |
SettingBase.setId(int cooked)
Sets the
Id value, with checking, for this
setting Persistent. |
void |
GroupMembershipBase.setId(int cooked)
Sets the
Id value, with checking, for this
groupMembership Persistent. |
void |
GroupCapabilityBase.setId(int cooked)
Sets the
Id value, with checking, for this
groupCapability Persistent. |
void |
GroupBase.setId(int cooked)
Sets the
Id value, with checking, for this
group Persistent. |
void |
ColumnInfoBase.setId(int cooked)
Sets the
Id value, with checking, for this
columnInfo Persistent. |
void |
CapabilityBase.setId(int cooked)
Sets the
Id value, with checking, for this
capability Persistent. |
void |
UserBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
user Persistent. |
void |
TableInfoBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
tableInfo Persistent. |
void |
TableCategoryBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
tableCategory Persistent. |
void |
SettingBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
setting Persistent. |
void |
GroupMembershipBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
groupMembership Persistent. |
void |
GroupCapabilityBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
groupCapability Persistent. |
void |
GroupBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
group Persistent. |
void |
ColumnInfoBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
columnInfo Persistent. |
void |
CapabilityBase.setId(Integer cooked)
Sets the
Id value, with checking, for this
capability Persistent. |
void |
ColumnInfoBase.setIndexed(boolean cooked)
Sets the
Indexed value, with checking,
from a boolean, for this
columnInfo Persistent. |
void |
ColumnInfoBase.setIndexed(Boolean cooked)
Sets the
Indexed value, with checking, for this
columnInfo Persistent. |
void |
ColumnInfoBase.setIntegrityfix(StandardIntegrityFix cooked)
Sets the
Integrityfix value, with checking,
for the Persistent argument. |
void |
ColumnInfoBase.setIntegrityfixIndex(Integer raw)
Sets the
Integrityfix index value, with checking,
for this Persistent. |
void |
UserBase.setLogin(String cooked)
Sets the
Login value, with checking, for this
user Persistent. |
void |
UserBase.setName(String cooked)
Sets the
Name value, with checking, for this
user Persistent. |
void |
TableInfoBase.setName(String cooked)
Sets the
Name value, with checking, for this
tableInfo Persistent. |
void |
TableCategoryBase.setName(String cooked)
Sets the
Name value, with checking, for this
tableCategory Persistent. |
void |
SettingBase.setName(String cooked)
Sets the
Name value, with checking, for this
setting Persistent. |
void |
GroupBase.setName(String cooked)
Sets the
Name value, with checking, for this
group Persistent. |
void |
ColumnInfoBase.setName(String cooked)
Sets the
Name value, with checking, for this
columnInfo Persistent. |
void |
CapabilityBase.setName(String cooked)
Sets the
Name value, with checking, for this
capability Persistent. |
void |
ValueInfoBase.setNullable(boolean cooked)
Sets the
Nullable value, with checking,
from a boolean, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setNullable(Boolean cooked)
Sets the
Nullable value, with checking, for this
ValueInfo Persistent. |
void |
UserBase.setPassword(String cooked)
Sets the
Password value, with checking, for this
user Persistent. |
void |
ValueInfoBase.setPrecision(int cooked)
Sets the
Precision value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setPrecision(Integer cooked)
Sets the
Precision value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setRangelimit_string(String cooked)
Sets the
Rangelimit_string value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setRangelow_string(String cooked)
Sets the
Rangelow_string value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setRenderinfo(String cooked)
Sets the
Renderinfo value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setScale(int cooked)
Sets the
Scale value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setScale(Integer cooked)
Sets the
Scale value, with checking, for this
ValueInfo Persistent. |
void |
ColumnInfoBase.setSearchability(Searchability cooked)
Sets the
Searchability value, with checking, for the Persistent argument. |
void |
ColumnInfoBase.setSearchabilityIndex(Integer raw)
Sets the
Searchability index value, with checking, for this Persistent. |
void |
TableInfoBase.setSeqcached(boolean cooked)
Sets the
Seqcached value, with checking,
from a boolean, for this
tableInfo Persistent. |
void |
TableInfoBase.setSeqcached(Boolean cooked)
Sets the
Seqcached value, with checking, for this
tableInfo Persistent. |
void |
ValueInfoBase.setSize(int cooked)
Sets the
Size value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setSize(Integer cooked)
Sets the
Size value, with checking, for this
ValueInfo Persistent. |
void |
ColumnInfoBase.setSortdescending(boolean cooked)
Sets the
Sortdescending value, with checking,
from a boolean, for this
columnInfo Persistent. |
void |
ColumnInfoBase.setSortdescending(Boolean cooked)
Sets the
Sortdescending value, with checking, for this
columnInfo Persistent. |
void |
ColumnInfoBase.setTableinfo(TableInfo cooked)
Set the Tableinfo.
|
void |
ColumnInfoBase.setTableinfoTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
ValueInfoBase.setTypefactory(PoemTypeFactory cooked)
Sets the
PoemTypeFactory Typefactory value for this ValueInfo Column of the ValueInfo Table. |
void |
ValueInfoBase.setTypefactoryCode(Integer raw)
Sets the
Integer Typefactory value for this ValueInfo Column of the ValueInfo Table. |
void |
ColumnInfoBase.setUnique(boolean cooked)
Sets the
Unique value, with checking,
from a boolean, for this
columnInfo Persistent. |
void |
ColumnInfoBase.setUnique(Boolean cooked)
Sets the
Unique value, with checking, for this
columnInfo Persistent. |
void |
GroupMembershipBase.setUser(User cooked)
Set the User.
|
void |
ColumnInfoBase.setUsercreateable(boolean cooked)
Sets the
Usercreateable value, with checking,
from a boolean, for this
columnInfo Persistent. |
void |
ColumnInfoBase.setUsercreateable(Boolean cooked)
Sets the
Usercreateable value, with checking, for this
columnInfo Persistent. |
void |
ValueInfoBase.setUsereditable(boolean cooked)
Sets the
Usereditable value, with checking,
from a boolean, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setUsereditable(Boolean cooked)
Sets the
Usereditable value, with checking, for this
ValueInfo Persistent. |
void |
GroupMembershipBase.setUserTroid(Integer raw)
Sets the Table Row Object ID.
|
void |
SettingBase.setValue(String cooked)
Sets the
Value value, with checking, for this
setting Persistent. |
void |
ValueInfoBase.setWidth(int cooked)
Sets the
Width value, with checking, for this
ValueInfo Persistent. |
void |
ValueInfoBase.setWidth(Integer cooked)
Sets the
Width value, with checking, for this
ValueInfo Persistent. |
Copyright © 2000–2021 PanEris. All rights reserved.