Class TypeTreeNode


  • public class TypeTreeNode
    extends java.lang.Object
    Class comment for TypeTreeNode.java goes here.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String label
      The label.
      private int size
      The size.
      private Type type
      The type.
    • Constructor Summary

      Constructors 
      Constructor Description
      TypeTreeNode()
      Constructor for TypeTreeNode.
      TypeTreeNode​(Type type, java.lang.String label, int size)
      Instantiates a new type tree node.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getLabel()
      Returns the label.
      Type getType()
      Returns the type.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • type

        private final Type type
        The type.
      • label

        private final java.lang.String label
        The label.
      • size

        private final int size
        The size.
    • Constructor Detail

      • TypeTreeNode

        public TypeTreeNode()
        Constructor for TypeTreeNode.
      • TypeTreeNode

        public TypeTreeNode​(Type type,
                            java.lang.String label,
                            int size)
        Instantiates a new type tree node.
        Parameters:
        type - the type
        label - the label
        size - the size
    • Method Detail

      • toString

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

        public java.lang.String getLabel()
        Returns the label.
        Returns:
        String
      • getType

        public Type getType()
        Returns the type.
        Returns:
        Type