org.apache.batik.dom

Class AbstractElement.Entry

protected static class AbstractElement.Entry extends Object implements Serializable

To manage collisions in the attributes map. Implements a linked list of Node-objects.
Field Summary
inthash
The hash code, must not change after creation.
Stringname
The node name.
StringnamespaceURI
The namespace URI
AbstractElement.Entrynext
The next entry
Nodevalue
The value
Constructor Summary
Entry(int hash, String ns, String nm, Node value, AbstractElement.Entry next)
Creates a new entry
Method Summary
booleanmatch(String ns, String nm)
Whether this entry match the given keys.

Field Detail

hash

public int hash
The hash code, must not change after creation.

name

public String name
The node name.

namespaceURI

public String namespaceURI
The namespace URI

public AbstractElement.Entry next
The next entry

value

public Node value
The value

Constructor Detail

Entry

public Entry(int hash, String ns, String nm, Node value, AbstractElement.Entry next)
Creates a new entry

Method Detail

match

public boolean match(String ns, String nm)
Whether this entry match the given keys.
Copyright B) 2008 Apache Software Foundation. All Rights Reserved.