cgl.hhms.hhfr
Class DataStructure

java.lang.Object
  extended bycgl.hhms.hhfr.DataStructure

public class DataStructure
extends java.lang.Object


Constructor Summary
DataStructure()
           
 
Method Summary
 void add(java.lang.String name, char type)
          Add Field to the Queue We do not need remove because we do not manipulate Data Model.
 void add(java.lang.String name, char type, char prim, int value)
          Add Field to the Queue We do not need remove because we do not manipulate Data Model.
 void add(java.lang.String name, char type, int value)
          Add Field to the Queue We do not need remove because we do not manipulate Data Model.
 java.lang.String getName(int i)
           
 char getPrim(int i)
           
 int getSize()
           
 char getType(int i)
           
 int getValue(int i)
           
 java.lang.String toString()
          Convert a DataStructure content for debugging to String
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DataStructure

public DataStructure()
Method Detail

add

public void add(java.lang.String name,
                char type)
Add Field to the Queue We do not need remove because we do not manipulate Data Model.

Parameters:
name -
type -

add

public void add(java.lang.String name,
                char type,
                int value)
Add Field to the Queue We do not need remove because we do not manipulate Data Model.

Parameters:
name -
type -
value -

add

public void add(java.lang.String name,
                char type,
                char prim,
                int value)
Add Field to the Queue We do not need remove because we do not manipulate Data Model.

Parameters:
name -
type -
prim -
value -

getSize

public int getSize()

toString

public java.lang.String toString()
Convert a DataStructure content for debugging to String


getName

public java.lang.String getName(int i)

getType

public char getType(int i)

getPrim

public char getPrim(int i)

getValue

public int getValue(int i)