hotsax.html.sax
Class HtmlParserVal

java.lang.Object
  extended by hotsax.html.sax.HtmlParserVal
Direct Known Subclasses:
Lval

public class HtmlParserVal
extends Object

BYACC/J Semantic Value for parser: HtmlParser This class provides some of the functionality of the yacc/C 'union' directive


Field Summary
 double dval
          double value of this 'union'
 int ival
          integer value of this 'union'
 Object obj
          object value of this 'union'
 String sval
          string value of this 'union'
 
Constructor Summary
HtmlParserVal(double val)
          Initialize me as a double
HtmlParserVal(int val)
          Initialize me as an int
HtmlParserVal(Object val)
          Initialize me as an Object
HtmlParserVal(String val)
          Initialize me as a string
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ival

public int ival
integer value of this 'union'


dval

public double dval
double value of this 'union'


sval

public String sval
string value of this 'union'


obj

public Object obj
object value of this 'union'

Constructor Detail

HtmlParserVal

public HtmlParserVal(int val)
Initialize me as an int


HtmlParserVal

public HtmlParserVal(double val)
Initialize me as a double


HtmlParserVal

public HtmlParserVal(String val)
Initialize me as a string


HtmlParserVal

public HtmlParserVal(Object val)
Initialize me as an Object



Copyright © 2007-2008. All Rights Reserved.