Package | Description |
---|---|
com.tietoenator.trip.jxp.data |
Database content manipulation.
|
Modifier and Type | Method and Description |
---|---|
TdbComponent |
TdbRecord.appendComponent()
Create a new component (part record), link it to this record
|
TdbComponent |
TdbTupleList.getComponent()
Get the component that holds the fields in the tuple list.
|
TdbComponent |
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 |
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 exists
|
Modifier and Type | Method and Description |
---|---|
java.util.List<TdbComponent> |
TdbRecord.parts()
Retrieve the collection of part records (where applicable)
|
Modifier and Type | Method and Description |
---|---|
void |
TdbTupleList.setComponent(TdbComponent cmp)
Set the component that holds the fields in the tuple list.
|
Constructor and Description |
---|
TdbTupleList(TdbSession session,
TdbComponent cmp,
java.lang.String strFieldList)
Create a new tuple list by using a list of field names.
|
TdbTupleList(TdbSession session,
TdbComponent cmp,
TdbDatabaseDesign db,
java.lang.String fieldGroupName)
Create a new tuple list by using a field group.
|