util
Class RE.AV

java.lang.Object
  extended by util.RE.AV
Enclosing class:
RE

public static class RE.AV
extends java.lang.Object

A structure that records the result of a scan for an attribute='value' string. The attr and val fields record the attribute tag and the value string stripped of its delimiting quote characters. Either of these fields may be null.


Field Summary
 java.lang.String attr
          Attribute name.
 java.lang.String val
          Value string, without enclosing quotes.
 
Constructor Summary
RE.AV()
          Constructs an AV-pair with both values null.
 
Method Summary
 java.lang.String toString()
          Returns a string representing this AV-pair.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

attr

public java.lang.String attr
Attribute name.


val

public java.lang.String val
Value string, without enclosing quotes.

Constructor Detail

RE.AV

public RE.AV()
Constructs an AV-pair with both values null.

Method Detail

toString

public java.lang.String toString()
Returns a string representing this AV-pair.

Overrides:
toString in class java.lang.Object