Attributes
- Companion
- object
- Graph
-
- Supertypes
-
trait Expressiontrait CfgNodetrait AstNodetrait StoredNodetrait Producttrait Equalstrait TemplateDomBasetrait ExpressionBasetrait CfgNodeBasetrait AstNodeBasetrait AbstractNodetrait StaticType[AnyRef]class NodeRef[TemplateDomDb]class Nodetrait NodeOrDetachedNodeclass Elementclass Objecttrait Matchableclass AnyShow all
Members list
Value members
Concrete methods
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Traverse to EXPRESSION via ARGUMENT IN edge.
Traverse to EXPRESSION via ARGUMENT IN edge.
Attributes
Traverse to EXPRESSION via AST OUT edge.
Traverse to EXPRESSION via AST OUT edge.
Attributes
Traverse to EXPRESSION via REACHING_DEF OUT edge.
Traverse to EXPRESSION via REACHING_DEF OUT edge.
Attributes
Traverse to FILE via CONTAINS IN edge.
Traverse to FILE via CONTAINS IN edge.
Attributes
Traverse to METHOD via CONTAINS IN edge.
Traverse to METHOD via CONTAINS IN edge.
Attributes
Attributes
- Definition Classes
Attributes
- Definition Classes
Traverse to TAG via TAGGED_BY OUT edge.
Traverse to TAG via TAGGED_BY OUT edge.
Attributes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
-
Equals
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
-
AbstractNode -> Element
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
-
Product
Attributes
- Definition Classes
-
Product
Attributes
- Definition Classes
-
Product
Attributes
- Definition Classes
-
Product
Attributes
- Definition Classes
-
Element
Inherited methods
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to AST_NODE via ARGUMENT OUT edge.
Traverse to AST_NODE via AST IN edge.
Traverse to AST_NODE via CFG IN edge.
Traverse to AST_NODE via REACHING_DEF IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to BLOCK via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to CALL_REPR via CFG IN edge.
Traverse to CALL via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to CFG_NODE via ARGUMENT OUT edge.
Traverse to CFG_NODE via AST IN edge.
Traverse to CFG_NODE via CFG IN edge.
Traverse to CFG_NODE via REACHING_DEF IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to CONTROL_STRUCTURE via CFG IN edge.
Traverse to DECLARATION via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to EXPRESSION via ARGUMENT OUT edge.
Traverse to EXPRESSION via AST IN edge.
Traverse to EXPRESSION via CFG IN edge.
Traverse to EXPRESSION via REACHING_DEF IN edge.
Traverse to FIELD_IDENTIFIER via CFG IN edge.
Traverse to IDENTIFIER via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to JUMP_TARGET via CFG IN edge.
Traverse to LITERAL via CFG IN edge.
Traverse to METHOD_REF via CFG IN edge.
Traverse to METHOD via CFG IN edge.
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Attributes
- Inherited from:
- StoredNode
Traverse to TEMPLATE_DOM via ARGUMENT OUT edge.
Traverse to TEMPLATE_DOM via AST IN edge.
Traverse to TEMPLATE_DOM via REACHING_DEF IN edge.
Traverse to TYPE_REF via CFG IN edge.
Traverse to UNKNOWN via CFG IN edge.
Attributes
- Inherited from:
- TemplateDomBase
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Compares the receiver object (this
) with the argument object (that
) for equivalence.
Compares the receiver object (this
) with the argument object (that
) for equivalence.
Any implementation of this method should be an equivalence relation:
- It is reflexive: for any instance
x
of typeAny
,x.equals(x)
should returntrue
. - It is symmetric: for any instances
x
andy
of typeAny
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any instances
x
,y
, andz
of typeAny
ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
.
If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode
to ensure that objects which are "equal" (o1.equals(o2)
returns true
) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)
).
Value parameters
- that
-
the object to compare against this object for equality.
Attributes
- Returns
-
true
if the receiver object is equivalent to the argument;false
otherwise. - Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Calculates a hash code value for the object.
Calculates a hash code value for the object.
The default hashing algorithm is platform dependent.
Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)
) yet not be equal (o1.equals(o2)
returns false
). A degenerate implementation could always return 0
. However, it is required that if two objects are equal (o1.equals(o2)
returns true
) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)
). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals
method.
Attributes
- Returns
-
the hash code value for this object.
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- Element
Attributes
- Inherited from:
- Element
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- StoredNode
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
Attributes
- Returns
-
a string representation of the object.
- Inherited from:
- NodeRef
Attributes
- Inherited from:
- StoredNode
Deprecated and Inherited methods
Attributes
- Deprecated
- true
- Inherited from:
- Node
Attributes
- Deprecated
- true
- Inherited from:
- Node
Attributes
- Deprecated
- true
- Inherited from:
- Node
Attributes
- Deprecated
- true
- Inherited from:
- Node
Attributes
- Deprecated
- true
- Inherited from:
- Element
Attributes
- Deprecated
- true
- Inherited from:
- Element
Attributes
- Deprecated
- true
- Inherited from:
- Element
Attributes
- Deprecated
- true
- Inherited from:
- Element
Attributes
- Deprecated
- true
- Inherited from:
- Element