|
|
||||||||||||||
Class Attributepublic class Attribute { // Constructors public Attribute(); public Attribute(Name n, Object v); // Methods public Name getName(); public Object getValue(); } This class encapsulates an XML Name and value pair. ConstructorsAttributepublic Attribute(); Attributepublic Attribute(Name n, Object v); MethodsgetNamepublic Name getName(); getValuepublic Object getValue();
|