Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.telefonicasoluciones.search.server.parser.xml
Class AttributeList  view AttributeList download AttributeList.java

java.lang.Object
  extended bycom.telefonicasoluciones.search.server.parser.xml.AttributeList

public class AttributeList
extends java.lang.Object


Field Summary
private  java.util.Hashtable list
           
 
Constructor Summary
AttributeList()
           
 
Method Summary
 boolean exists(java.lang.String name)
           
 java.lang.String get(java.lang.String name)
           
 java.lang.String getQuoted(java.lang.String name)
          Returns an attribute with all double quote characters escaped with a backslash.
 java.util.Enumeration names()
           
 void set(java.lang.String name, java.lang.String value)
           
 int size()
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 java.lang.String toString(java.lang.String name)
           
 void unset(java.lang.String name)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

list

private java.util.Hashtable list
Constructor Detail

AttributeList

public AttributeList()
Method Detail

exists

public boolean exists(java.lang.String name)

get

public java.lang.String get(java.lang.String name)

getQuoted

public java.lang.String getQuoted(java.lang.String name)
Returns an attribute with all double quote characters escaped with a backslash.


names

public java.util.Enumeration names()

set

public void set(java.lang.String name,
                java.lang.String value)

size

public int size()

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).


toString

public java.lang.String toString(java.lang.String name)

unset

public void unset(java.lang.String name)