Methods Summary |
---|
public java.lang.Object | clone()INTERNAL:
Clones itself.
Object object = null;
try {
object = super.clone();
} catch (Exception exception) {
throw new InternalError(exception.toString());
}
return object;
|
public void | convertClassNamesToClasses(java.lang.ClassLoader classLoader)INTERNAL:
Convert all the class-name-based settings in this QueryKey to actual class-based
settings
Will be overridded by subclasses
|
public oracle.toplink.essentials.descriptors.ClassDescriptor | getDescriptor()INTERNAL:
Return the descriptor.
return descriptor;
|
public java.lang.String | getName()PUBLIC:
Return the name for the query key.
This is the name that will be used in the expression.
return name;
|
public void | initialize(oracle.toplink.essentials.descriptors.ClassDescriptor aDescriptor)INTERNAL:
Initialize any information in the receiver that requires its descriptor.
Set the receiver's descriptor back reference.
setDescriptor(aDescriptor);
|
public boolean | isAbstractQueryKey()INTERNAL:
return whether this query key is abstract
return (this.getClass().equals(oracle.toplink.essentials.internal.helper.ClassConstants.QueryKey_Class));
|
public boolean | isCollectionQueryKey()PUBLIC::
Related query key should implement this method to return true.
return false;
|
public boolean | isDirectCollectionQueryKey()PUBLIC::
Related query key should implement this method to return true.
return false;
|
public boolean | isDirectQueryKey()PUBLIC::
Related query key should implement this method to return true.
return false;
|
public boolean | isForeignReferenceQueryKey()PUBLIC::
Related query key should implement this method to return true.
return false;
|
public boolean | isManyToManyQueryKey()PUBLIC::
Related query key should implement this method to return true.
return false;
|
public boolean | isOneToManyQueryKey()PUBLIC::
Related query key should implement this method to return true.
return false;
|
public boolean | isOneToOneQueryKey()PUBLIC::
Related query key should implement this method to return true.
return false;
|
public boolean | isQueryKey()INTERNAL:
This is a QueryKey. return true.
return true;
|
public void | setDescriptor(oracle.toplink.essentials.descriptors.ClassDescriptor descriptor)INTERNAL:
Set the descriptor.
this.descriptor = descriptor;
|
public void | setName(java.lang.String name)PUBLIC:
Set the name for the query key.
This is the name that will be used in the expression.
this.name = name;
|
public java.lang.String | toString()INTERNAL:
return a string representation of this instance of QueryKey
return oracle.toplink.essentials.internal.helper.Helper.getShortClassName(this) + "(" + getName() + ")";
|