Class VariableModel.VariableNode

  • Enclosing class:
    VariableModel

    private static class VariableModel.VariableNode
    extends java.lang.Object
    A variable node in the tree.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private VariableModel.VariableNode[] children
      Array of child nodes.
      private java.lang.Object id
      The object name.
      private java.lang.Object object
      The script object.
    • Constructor Summary

      Constructors 
      Constructor Description
      VariableNode​(java.lang.Object object, java.lang.Object id)
      Creates a new VariableNode.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()
      Returns a string representation of this node.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • object

        private java.lang.Object object
        The script object.
      • id

        private java.lang.Object id
        The object name. Either a String or an Integer.
    • Constructor Detail

      • VariableNode

        public VariableNode​(java.lang.Object object,
                            java.lang.Object id)
        Creates a new VariableNode.
    • Method Detail

      • toString

        public java.lang.String toString()
        Returns a string representation of this node.
        Overrides:
        toString in class java.lang.Object