Package org.apache.cayenne.reflect
Class BaseArcProperty
java.lang.Object
org.apache.cayenne.reflect.BaseProperty
org.apache.cayenne.reflect.BaseArcProperty
- All Implemented Interfaces:
ArcProperty
,PropertyDescriptor
- Direct Known Subclasses:
BaseToManyProperty
,BaseToOneProperty
A base implementation of the
ArcProperty
.- Since:
- 3.0
-
Field Summary
Modifier and TypeFieldDescriptionprotected String
protected ObjRelationship
protected String
protected ClassDescriptor
Fields inherited from class org.apache.cayenne.reflect.BaseProperty
accessor, owner
-
Constructor Summary
ConstructorDescriptionBaseArcProperty
(ClassDescriptor owner, ClassDescriptor targetDescriptor, Accessor accessor, String reverseName) -
Method Summary
Modifier and TypeMethodDescriptionReturns a complimentary reverse ArcProperty or null if no reverse arc exists.Returns a path over reverse DbRelationships for this arc's ObjRelationship.Returns a relationship associated with this arc.Returns a ClassDescriptor for the type of graph nodes pointed to by this arc property.abstract boolean
Returns whether a target node connected to a given object is an unresolved fault.protected void
setReverse
(Object source, Object oldTarget, Object newTarget) A convenience method to set the reverse arc used by subclasses.abstract boolean
visit
(PropertyVisitor visitor) A visitor accept method.Methods inherited from class org.apache.cayenne.reflect.BaseProperty
getName, injectValueHolder, readProperty, readPropertyDirectly, toString, writeProperty, writePropertyDirectly
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.cayenne.reflect.ArcProperty
invalidate
Methods inherited from interface org.apache.cayenne.reflect.PropertyDescriptor
equals, getName, injectValueHolder, readProperty, readPropertyDirectly, writeProperty, writePropertyDirectly
-
Field Details
-
complimentaryReverseArcName
-
targetDescriptor
-
relationship
-
reverseDbPath
-
-
Constructor Details
-
BaseArcProperty
public BaseArcProperty(ClassDescriptor owner, ClassDescriptor targetDescriptor, Accessor accessor, String reverseName)
-
-
Method Details
-
visit
Description copied from interface:PropertyDescriptor
A visitor accept method.- Specified by:
visit
in interfacePropertyDescriptor
- Specified by:
visit
in classBaseProperty
- Returns:
- a status returned by the corresponding callback method of the visitor. It serves as an indication of whether peer properties processing is still needed.
-
isFault
Description copied from interface:ArcProperty
Returns whether a target node connected to a given object is an unresolved fault.- Specified by:
isFault
in interfaceArcProperty
- Parameters:
source
- an object that is a source object of the relationship.
-
getComplimentaryReverseDbRelationshipPath
Description copied from interface:ArcProperty
Returns a path over reverse DbRelationships for this arc's ObjRelationship.- Specified by:
getComplimentaryReverseDbRelationshipPath
in interfaceArcProperty
-
getRelationship
Description copied from interface:ArcProperty
Returns a relationship associated with this arc.- Specified by:
getRelationship
in interfaceArcProperty
-
getComplimentaryReverseArc
Description copied from interface:ArcProperty
Returns a complimentary reverse ArcProperty or null if no reverse arc exists.- Specified by:
getComplimentaryReverseArc
in interfaceArcProperty
-
getTargetDescriptor
Description copied from interface:ArcProperty
Returns a ClassDescriptor for the type of graph nodes pointed to by this arc property. Note that considering that a target object may be a subclass of the class handled by the descriptor, users of this method may need to callClassDescriptor.getSubclassDescriptor(Class)
before using the descriptor to access objects.- Specified by:
getTargetDescriptor
in interfaceArcProperty
-
setReverse
A convenience method to set the reverse arc used by subclasses.
-