Class Node

  • All Implemented Interfaces:
    java.lang.Cloneable, Constants, RuntimeConstants
    Direct Known Subclasses:
    Expression, Statement

    public class Node
    extends java.lang.Object
    implements Constants, java.lang.Cloneable
    WARNING: The contents of this source file are not part of any supported API. Code that depends on them does so at its own risk: they are subject to change or removal without notice.
    • Field Detail

      • op

        int op
      • where

        long where
    • Constructor Detail

      • Node

        Node​(int op,
             long where)
        Constructor
    • Method Detail

      • getOp

        public int getOp()
        Get the operator
      • getWhere

        public long getWhere()
        Get where
      • print

        public void print​(java.io.PrintStream out)
        Print
      • clone

        public java.lang.Object clone()
        Clone this object.
        Overrides:
        clone in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object