Class EnumEntry

java.lang.Object
  |
  +--EnumEntry

public class EnumEntry
extends java.lang.Object

EnumEntry.java this class takes a lexeme and creates all possible legal combinations of O/R's and parts of speech


Field Summary
 java.util.Vector enum_pairs
          Vector of all possible combinations of O/R's and parts of speech contained in a EnumPair wrapper
 java.lang.String lexeme
          the lexeme that the combinations are for
 
Constructor Summary
EnumEntry(DATA info, java.lang.String lexeme, int variable_number)
          Constructor, that takes a DATA node, and a lexeme, and produces all the legal possible combinations of O/R's and parts of speech.
EnumEntry(java.util.Hashtable orhash, java.util.Hashtable lxhash, java.lang.String lexeme, int variable_number)
          Constructor, that takes a ORTable, a LXTable, and a lexeme, and produces all the legal possible combinations of O/R's and parts of speech.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

enum_pairs

public java.util.Vector enum_pairs
Vector of all possible combinations of O/R's and parts of speech contained in a EnumPair wrapper

lexeme

public java.lang.String lexeme
the lexeme that the combinations are for
Constructor Detail

EnumEntry

public EnumEntry(DATA info,
                 java.lang.String lexeme,
                 int variable_number)
Constructor, that takes a DATA node, and a lexeme, and produces all the legal possible combinations of O/R's and parts of speech.
Parameters:
info - The DATA node that contains the ORTable, and LXTable
lexeme - the lexeme that is of interest
variable_number - A key used to specify what variable is being talked about

EnumEntry

public EnumEntry(java.util.Hashtable orhash,
                 java.util.Hashtable lxhash,
                 java.lang.String lexeme,
                 int variable_number)
Constructor, that takes a ORTable, a LXTable, and a lexeme, and produces all the legal possible combinations of O/R's and parts of speech.
Parameters:
orhash - The ORTable
lxhash - The LXTable
lexeme - the lexeme that is of interest
variable_number - A key used to specify what variable is being talked about