Uses of Class
com.tietoenator.trip.jxp.database.TdbFieldGroupDesign
-
Packages that use TdbFieldGroupDesign Package Description com.tietoenator.trip.jxp.database Classes to inspect and modify database design. -
-
Uses of TdbFieldGroupDesign in com.tietoenator.trip.jxp.database
Methods in com.tietoenator.trip.jxp.database that return TdbFieldGroupDesign Modifier and Type Method 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.Methods in com.tietoenator.trip.jxp.database that return types with arguments of type TdbFieldGroupDesign Modifier and Type Method Description java.util.List<TdbFieldGroupDesign>
TdbDatabaseDesign. getFieldGroups()
Get the field groups collection for the database.Methods in com.tietoenator.trip.jxp.database with parameters of type TdbFieldGroupDesign Modifier and Type Method 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.Method parameters in com.tietoenator.trip.jxp.database with type arguments of type TdbFieldGroupDesign Modifier and Type Method Description void
TdbDatabaseDesign. setFieldGroups(java.util.Collection<TdbFieldGroupDesign> groups)
Set the field groups collection for the database.Constructors in com.tietoenator.trip.jxp.database with parameters of type TdbFieldGroupDesign Constructor Description TdbFieldGroupDesign(TdbFieldGroupDesign src)
Copy constructor, performs a deep copy from a provided source.
-