weka.gui
Class HierarchyPropertyParser.TreeNode

java.lang.Object
  extended byweka.gui.HierarchyPropertyParser.TreeNode
Enclosing class:
HierarchyPropertyParser

private class HierarchyPropertyParser.TreeNode
extends java.lang.Object

The inner class implementing a single tree node. All fields are made public simply for convenient access, Although a severe violation of OO Design principle.


Field Summary
 java.util.Vector children
          The children of this node
 java.lang.String context
          The context of this node
 int level
          The level of this node
 HierarchyPropertyParser.TreeNode parent
          The parent of this node
 java.lang.String value
          The value of this node.
 
Constructor Summary
private HierarchyPropertyParser.TreeNode()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

parent

public HierarchyPropertyParser.TreeNode parent
The parent of this node


value

public java.lang.String value
The value of this node. Always String


children

public java.util.Vector children
The children of this node


level

public int level
The level of this node


context

public java.lang.String context
The context of this node

Constructor Detail

HierarchyPropertyParser.TreeNode

private HierarchyPropertyParser.TreeNode()