Package tools.mdsd.somde.services.node
Interface ConditionGuard<KeyType,NodeType>
-
- All Superinterfaces:
Node<NodeType>
,NodeVisitor.NodeVisitorAcceptor<NodeType>
- All Known Implementing Classes:
ConditionGuardNodeImpl
public interface ConditionGuard<KeyType,NodeType> extends Node<NodeType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <T> T
accept(NodeVisitor<NodeType,T> visitor)
default boolean
equalsWithoutChildren(Node<NodeType> other)
KeyType
getKey()
-
Methods inherited from interface tools.mdsd.somde.services.node.Node
addAllChildren, addChild, getChildren
-
-
-
-
Method Detail
-
getKey
KeyType getKey()
-
equalsWithoutChildren
default boolean equalsWithoutChildren(Node<NodeType> other)
- Specified by:
equalsWithoutChildren
in interfaceNode<KeyType>
-
accept
default <T> T accept(NodeVisitor<NodeType,T> visitor)
-
-