Class GroupShell

java.lang.Object
  |
  +--GroupShell

public class GroupShell
extends java.lang.Object
implements java.io.Serializable

Storage of group header information.

Author:
Karen Stevens
See Also:
Serialized Form

Field Summary
 java.lang.String GroupName
          Name of group.
 int NumElements
          Length of the board or group.
 int NumSelected
          Width of the board or group.
 boolean OtherCheck
          Sets characteristic or verbose.
 boolean TypeCheck
          Sets social or non-social.
 java.lang.String[] UserData
          Attribute information.
 
Constructor Summary
GroupShell()
          Empty default constructor
GroupShell(java.lang.String G, java.lang.String[] U, boolean T, boolean O, int N, int E)
          Used to load and store serialized data.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

UserData

public java.lang.String[] UserData
Attribute information.

TypeCheck

public boolean TypeCheck
Sets social or non-social.

OtherCheck

public boolean OtherCheck
Sets characteristic or verbose.

GroupName

public java.lang.String GroupName
Name of group.

NumSelected

public int NumSelected
Width of the board or group.

NumElements

public int NumElements
Length of the board or group.
Constructor Detail

GroupShell

public GroupShell()
Empty default constructor

GroupShell

public GroupShell(java.lang.String G,
                  java.lang.String[] U,
                  boolean T,
                  boolean O,
                  int N,
                  int E)
Used to load and store serialized data.
Parameters:
G - Group name.
U - Attribute information.
T - Social type.
O - Characteristic type.
N - Number of attributes.
E - Number of entries.