Package | Description |
---|---|
com.tietoenator.trip.jxp.database |
Classes to inspect and modify database design.
|
Modifier and Type | Method and Description |
---|---|
TdbFieldGroupDesign |
TdbDatabaseDesign.getFieldGroupById(int id)
Retrieve a reference to the design for a field group with the specified field number.
|
TdbFieldGroupDesign |
TdbDatabaseDesign.getFieldGroupByIndex(int index)
Retrieve the n'th field group within the database design.
|
TdbFieldGroupDesign |
TdbDatabaseDesign.getFieldGroupByName(java.lang.String name)
Retrieve the named field group within the database design.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<TdbFieldGroupDesign> |
TdbDatabaseDesign.getFieldGroups()
Get the field groups collection for the database.
|
Modifier and Type | Method and Description |
---|---|
int |
TdbFieldGroupDesign.compareTo(TdbFieldGroupDesign fgroup)
Order this object with relation to another -- required to be able to sort a
collection of these objects.
|
void |
TdbDatabaseDesign.putFieldGroup(TdbFieldGroupDesign fgroup)
Store a single modified field group's properties to the server.
|
void |
TdbDatabaseDesign.removeFieldGroup(TdbFieldGroupDesign fgroup)
Remove a particular field group from the current database design.
|
Modifier and Type | Method and Description |
---|---|
void |
TdbDatabaseDesign.setFieldGroups(java.util.Collection<TdbFieldGroupDesign> groups)
Set the field groups collection for the database.
|
Constructor and Description |
---|
TdbFieldGroupDesign(TdbFieldGroupDesign src)
Copy constructor, performs a deep copy from a provided source.
|