util
Class Node

java.lang.Object
  extended by util.Node

public class Node
extends java.lang.Object

Implements the Node and a linked list structure

Author:
shankar

Field Summary
 Node next
           
 Node prev
           
 char type
           
 int x
           
 int y
           
 int z
           
 
Constructor Summary
Node()
          Constructs empty Node
Node(int x, int y, int z, char type)
          Constructs the Node with given x,y,z and type values
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

prev

public Node prev

next

public Node next

x

public int x

y

public int y

z

public int z

type

public char type
Constructor Detail

Node

public Node()
Constructs empty Node


Node

public Node(int x,
            int y,
            int z,
            char type)
Constructs the Node with given x,y,z and type values