Uses of Class
com.tietoenator.trip.jxp.data.TdbComponent
-
Packages that use TdbComponent Package Description com.tietoenator.trip.jxp.data Database content manipulation. -
-
Uses of TdbComponent in com.tietoenator.trip.jxp.data
Methods in com.tietoenator.trip.jxp.data that return TdbComponent Modifier and Type Method Description TdbComponent
TdbRecord. appendComponent()
Create a new component (part record), link it to this recordTdbComponent
TdbRecord. getComponent(int index)
Retrieve the identified component (0 is head, >= 1 is part)
Note that by design, the components retrieved by this method are "live" and any updates on them are performed directly on the component representation maintained within the TdbRecord instance.TdbComponent
TdbRecord. getComponent(java.lang.String name)
Retrieve the named component
Note that by design, the components retrieved by this method are "live" and any updates on them are performed directly on the component representation maintained within the TdbRecord instance.TdbComponent
TdbTupleList. getComponent()
Get the component that holds the fields in the tuple list.TdbComponent
TdbRecord. getHead()
Get the values that comprise the head record
Note that by design, the component retrieved is "live" and any updates on it are performed directly on the head record representation maintained within the TdbRecord instance.TdbComponent
TdbField. getOwnerComponent()
Get a reference to the component within which this field existsMethods in com.tietoenator.trip.jxp.data that return types with arguments of type TdbComponent Modifier and Type Method Description java.util.List<TdbComponent>
TdbRecord. parts()
Retrieve the collection of part records (where applicable)Methods in com.tietoenator.trip.jxp.data with parameters of type TdbComponent Modifier and Type Method Description void
TdbTupleList. setComponent(TdbComponent cmp)
Set the component that holds the fields in the tuple list.Constructors in com.tietoenator.trip.jxp.data with parameters of type TdbComponent Constructor Description TdbTupleList(TdbSession session, TdbComponent cmp, TdbDatabaseDesign db, java.lang.String fieldGroupName)
Create a new tuple list by using a field group.TdbTupleList(TdbSession session, TdbComponent cmp, java.lang.String strFieldList)
Create a new tuple list by using a list of field names.
-