/* ------------------------------------------------------------------------- */ /* */ /* DIC TOTAL SUPPORT TREE NODE */ /* */ /* Frans Coenen */ /* */ /* Wednesday 2 July 2003 */ /* */ /* Department of Computer Science */ /* The University of Liverpool */ /* */ /* ------------------------------------------------------------------------- */ //package lucsKDD_ARM; import java.io.*; import java.util.*; /** Methods concerned with Ttree node structure. Arrays of these structures are used to store nodes at the same level in any sub-branch of the T-tree. @author Frans Coenen @version 2 July 2003 */ public class DIC_TtreeNode extends TtreeNode { /* ------ FIELDS ------ */ /** The status of the node: 0 = Possible unsupported item set, 1 = Possible supported item set, 2 = Unsupported item set and 3 = Supported item set. */ public byte status = 0; /** The block count. */ public byte blockCount = 1; /** A reference variable to the child (if any) of the node. */ public DIC_TtreeNode[] childRef = null; /* ------ CONSTRUCTORS ------ */ /** Default constructor */ public DIC_TtreeNode() { super(); } }