Package oracle.rules.sdk2.datamodel
Class Node
java.lang.Object
oracle.rules.sdk2.datamodel.Node
- Direct Known Subclasses:
JavaNode
An abstract class that represents Nodes
in a schema or class hierarchy.
Sub-classes are used to load Java or Jaxb classes into the DataModel.
Sub-classes are used to load Java or Jaxb classes into the DataModel.
-
Nested Class Summary
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
void
close()
Mark this node as "closed".boolean
containsKey
(Object key) boolean
containsValue
(Object value) entrySet()
boolean
Return the dictionary that was used to establish the node tree of which this is part.Return a String represntation of a booleangetName()
Return the name property for the nodeCreate a NodeTable containing all the immediate children of this Node.Return the String representation of state.Return the parent for this nodeint
hashCode()
internalLoad
(Set<FactType> loaded) boolean
isEmpty()
boolean
isOpen()
Indicate the status of of a node.keySet()
load()
void
open()
Mark this node as "opened".void
void
Set the name of the Node.int
size()
values()
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Field Details
-
PROP_STATE
- See Also:
-
OPEN
- See Also:
-
CLOSED
- See Also:
-
PROP_LOAD_FLAG
- See Also:
-
TRUE
- See Also:
-
FALSE
- See Also:
-
PROP_NAME
- See Also:
-
-
Method Details
-
clear
public void clear() -
containsKey
- Specified by:
containsKey
in interfaceMap<String,
String>
-
containsValue
- Specified by:
containsValue
in interfaceMap<String,
String>
-
entrySet
-
equals
-
get
-
hashCode
public int hashCode() -
isEmpty
public boolean isEmpty() -
keySet
-
put
-
putAll
-
remove
-
size
public int size() -
values
-
setName
Set the name of the Node. Used by any reference- Parameters:
name
- String with the new name
-
getName
Return the name property for the node -
getParent
Return the parent for this node -
getDictionary
Return the dictionary that was used to establish the node tree of which this is part. -
open
public void open()Mark this node as "opened". The node's state actually has no effect on the behavior of the node. The state of the node is a mneumonic that allows users of Node classes to keep some display state. A nested node table is not created ("opened") until the nested node table is actually retrieved. -
close
public void close()Mark this node as "closed". The node's state actually has no effect on the behavior of the node. The state of the node is a mneumonic that allows callers of nodes to maintian display state. A nested node tables are only created on-demand and have no relationship to the state of the node. -
isOpen
public boolean isOpen()Indicate the status of of a node. Returning true from this node implies that if the node represents a package that the immediate children of this package have been opened (have been materialized in the Node's NestedNodeTable).
If the Node is a class (therefore has no children) then this method will always return true.- Returns:
- boolean indcating node open or closed
-
getOpenState
Return the String representation of state. Node.OPEN and Node.CLOSED returned depending on whether the children of the node are displayed. If isOpen() returns true, this method will return Node.OPEN if isOpen() returns false, this method will return Node.CLOSED- Returns:
- String from one of Node.CLOSED or Node.OPEN
-
getNestedTable
Create a NodeTable containing all the immediate children of this Node. If this Node can not have any children (e.g. JClassNode or JaxbNode) then this will return null.- Returns:
- NodeTable containing all immediate children
-
internalLoad
-
load
-
load
-
getLoadFlag
Return a String represntation of a boolean"true" -- loaded into data model "false" -- not loaded into datamodel
- Returns:
- String representing boolean indicating that node is loaded into the DataModel.
-