org.modeshape.graph.query.model
Class ChildNodeJoinCondition

java.lang.Object
  extended by org.modeshape.graph.query.model.ChildNodeJoinCondition
All Implemented Interfaces:
Serializable, JoinCondition, LanguageObject, Visitable
Direct Known Subclasses:
JcrChildNodeJoinCondition

@Immutable
public class ChildNodeJoinCondition
extends Object
implements JoinCondition

A join condition that evaluates to true only when the named child node is indeed a child of the named parent node.

See Also:
Serialized Form

Constructor Summary
ChildNodeJoinCondition(SelectorName parentSelectorName, SelectorName childSelectorName)
          Create a join condition that determines whether the node identified by the child selector is a child of the node identified by the parent selector.
 
Method Summary
 void accept(Visitor visitor)
          Accept the supplied visitor, which should call back to the visitor to complete the double-dispatch operation.
 SelectorName childSelectorName()
          Get the name of the selector that represents the child.
 boolean equals(Object obj)
          
 int hashCode()
          
 SelectorName parentSelectorName()
          Get the name of the selector that represents the parent.
 String toString()
          
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ChildNodeJoinCondition

public ChildNodeJoinCondition(SelectorName parentSelectorName,
                              SelectorName childSelectorName)
Create a join condition that determines whether the node identified by the child selector is a child of the node identified by the parent selector.

Parameters:
parentSelectorName - the first selector
childSelectorName - the second selector
Method Detail

childSelectorName

public final SelectorName childSelectorName()
Get the name of the selector that represents the child.

Returns:
the selector name of the child node; never null

parentSelectorName

public final SelectorName parentSelectorName()
Get the name of the selector that represents the parent.

Returns:
the selector name of the parent node; never null

toString

public String toString()

Overrides:
toString in class Object
See Also:
Object.toString()

hashCode

public int hashCode()

Overrides:
hashCode in class Object
See Also:
Object.hashCode()

equals

public boolean equals(Object obj)

Overrides:
equals in class Object
See Also:
Object.equals(java.lang.Object)

accept

public void accept(Visitor visitor)
Accept the supplied visitor, which should call back to the visitor to complete the double-dispatch operation.

Specified by:
accept in interface Visitable
Parameters:
visitor - the visitor; never null
See Also:
Visitable.accept(org.modeshape.graph.query.model.Visitor)


Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.