Methods Summary |
---|
public oracle.toplink.essentials.internal.helper.DatabaseField | getField()INTERNAL:
Return the field for the query key.
return field;
|
public java.lang.String | getFieldName()PUBLIC:
Return the field name for the query key.
return getField().getName();
|
public java.lang.String | getQualifiedFieldName()PUBLIC:
Return the qualified field name for the query key.
return getField().getQualifiedName();
|
public void | initialize(oracle.toplink.essentials.descriptors.ClassDescriptor descriptor)INTERNAL:
Initialize any information in the receiver that requires its descriptor.
Set the receiver's descriptor back reference.
super.initialize(descriptor);
if (!getField().hasTableName()) {
getField().setTable(descriptor.getDefaultTable());
}
|
public boolean | isDirectQueryKey()INTERNAL:
override the isDirectQueryKey() method in the superclass to return true.
return true;
|
public void | setField(oracle.toplink.essentials.internal.helper.DatabaseField field)INTERNAL:
Set the field for the query key.
this.field = field;
|
public void | setFieldName(java.lang.String fieldName)PUBLIC:
Set the field name for the query key.
setField(new DatabaseField(fieldName));
|