Uses of Class
com.tietoenator.trip.jxp.database.TdbFieldDesign
Packages that use TdbFieldDesign
Package
Description
Database content manipulation.
Classes to inspect and modify database design.
-
Uses of TdbFieldDesign in com.tietoenator.trip.jxp.data
Methods in com.tietoenator.trip.jxp.data with parameters of type TdbFieldDesignModifier and TypeMethodDescriptionTdbComponent.createField(TdbFieldDesign design) Create a new field instance
This factory method creates a TdbField-derived object of the appropriate class and associates the new instance with this component.voidTdbRecord.setPartNameField(TdbFieldDesign field) Set the part name field, so that automatic assignment from the TdbComponent.getName() and TdbComponent.setName() methods happens appropriately.voidTdbRecord.setRecordNameField(TdbFieldDesign field) Set the record name field, so that automatic assignment from the getRecordName() / setRecordName() methods happens appropriately.voidTdbRecord.setRecordNumberField(TdbFieldDesign field) Set the record number field, so that automatic assignment from the getRecordId() method happens appropriately. -
Uses of TdbFieldDesign in com.tietoenator.trip.jxp.database
Methods in com.tietoenator.trip.jxp.database that return TdbFieldDesignModifier and TypeMethodDescriptionTdbDatabaseDesign.getFieldById(int id) Retrieve a reference to the design for a field with the specified field number.TdbDatabaseDesign.getFieldByIndex(int index) Retrieve the n'th field within the database design.TdbDatabaseDesign.getFieldByName(String name) Retrieve the named field within the database design.Methods in com.tietoenator.trip.jxp.database that return types with arguments of type TdbFieldDesignModifier and TypeMethodDescriptionTdbDatabaseDesign.fields()Retrieve the field collection, i.e. the set of field designs that comprise the database design.TdbDatabaseClusterDesign.getCommonFields()Return a list of fields common to all databases in the cluster.TdbDatabaseClusterDesign.getCommonFields(String name) Return a list of fields common to all databases in the cluster.Methods in com.tietoenator.trip.jxp.database with parameters of type TdbFieldDesignModifier and TypeMethodDescriptionvoidTdbDatabaseDesign.addField(TdbFieldDesign field) Append a new field definition to the current design.intTdbFieldDesign.compareTo(TdbFieldDesign field) Order this object with relation to another -- required to be able to sort a collection of these objects.voidTdbFieldDesign.copyFrom(TdbFieldDesign src) Initialize this instance from the source providedvoidTdbDatabaseDesign.putField(TdbFieldDesign field) Store a single modified field's properties to the server.voidTdbDatabaseDesign.removeField(TdbFieldDesign field) Remove a particular field from the current database design.voidTdbDatabaseDesign.validateField(TdbFieldDesign field) Validate a particular field's design against the database design.Method parameters in com.tietoenator.trip.jxp.database with type arguments of type TdbFieldDesignModifier and TypeMethodDescriptionvoidTdbDatabaseDesign.setFields(Collection<TdbFieldDesign> fields) Replace or establish the field collection, i.e. the set of field designs that comprise the database design.Constructors in com.tietoenator.trip.jxp.database with parameters of type TdbFieldDesign