[Previous page] [TreeGUI.java] [Mystack.java] [TwoThreetree.java]


/* *************************************************************************

*** Filename:NodeGUI.java
    Associated java files: TreeGUI.java, NodeGUI.java, TwoThreetree.java, Mystack.java
    Compiler : JDK 1.1.4

*** °ú    ¸ñ : È­ÀÏ󸮷Ð
*** ´ã´ç±³¼ö : ¹Ú¿µ¹è
 

*** ¸íÁö´ëÇб³ ÄÄÇ»ÅͰøÇаú 3Çг⠹ÎÁ¤½Ä
*** E-Mail : mxxk@uriel.net
*** Execute on(Refe. to) http://www.uriel.net/~mxxk/File/btree.html

*** **********************************************************************/

public class NodeGUI
{
   public int x;
   public int y;
   public int width;
   public int height;
   public int lvalue;
   public int rvalue;
   public boolean inUse;
 

   public NodeGUI(int x, int y, int width, int height)
   {
      this.x = x;
      this.y = y;
      this.width = width;
      this.height = height;
      this.lvalue = 0;
      this.rvalue = 0;
      this.inUse = true;
   }
 

   public NodeGUI(int x, int y, int width, int height, boolean inUse)
   {
      this.x = x;
      this.y = y;
      this.width = width;
      this.height = height;
      this.lvalue = 0;
      this.rvalue = 0;
      this.inUse = inUse;
   }
 

   public NodeGUI(int x, int y, int width, int height, int lvalue, int rvalue)
   {
      this.x = x;
      this.y = y;
      this.width = width;
      this.height = height;
      this.lvalue = lvalue;
      this.rvalue = rvalue;
      this.inUse = true;
   }

}



[Previous page] [TreeGUI.java] [Mystack.java] [TwoThreetree.java]