Uses of Interface
org.w3c.dom.Attr

Packages that use Attr
org.apache.batik.dom Provides an implementation of the DOM level 2 core module. 
org.apache.batik.dom.svg   
org.apache.batik.script Provides an API for interpreting scripting language found in SVG files. 
org.w3c.dom   
 

Uses of Attr in org.apache.batik.dom
 

Classes in org.apache.batik.dom that implement Attr
 class AbstractAttr
          This class implements the Attr interface.
 class AbstractAttrNS
          This class implements the Attr interface with support for namespaces.
 class AttrWrapper
          This class implements a wrapper for an Attr.
 class GenericAttr
          This class implements the Attr interface.
 class GenericAttrNS
          This class implements the Attr interface with support for namespaces.
 

Methods in org.apache.batik.dom that return Attr
protected  Attr NodeWrapper.createAttrWrapper(Attr n)
          Creates a wrapper for the given Attr.
 Attr ElementWrapper.getAttributeNode(java.lang.String name)
          DOM: Implements Element.getAttributeNode(String).
 Attr ElementWrapper.setAttributeNode(Attr newAttr)
          DOM: Implements Element.setAttributeNode(Attr).
 Attr ElementWrapper.removeAttributeNode(Attr oldAttr)
          DOM: Implements Element.removeAttributeNode(Attr).
 Attr ElementWrapper.getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
          DOM: Implements Element.getAttributeNodeNS(String,String).
 Attr ElementWrapper.setAttributeNodeNS(Attr newAttr)
          DOM: Implements Element.setAttributeNodeNS(Attr).
 Attr AbstractElement.getAttributeNode(java.lang.String name)
          DOM: Implements Element.getAttributeNode(String).
 Attr AbstractElement.setAttributeNode(Attr newAttr)
          DOM: Implements Element.setAttributeNode(Attr).
 Attr AbstractElement.removeAttributeNode(Attr oldAttr)
          DOM: Implements Element.removeAttributeNode(Attr).
 Attr AbstractElement.getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
          DOM: Implements Element.getAttributeNodeNS(String,String).
 Attr AbstractElement.setAttributeNodeNS(Attr newAttr)
          DOM: Implements Element.setAttributeNodeNS(Attr).
 Attr DocumentWrapper.createAttribute(java.lang.String name)
          DOM: Implements Document.createAttribute(String).
 Attr DocumentWrapper.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          DOM: Implements Document.createAttributeNS(String,String).
protected  Attr DocumentWrapper.createAttrWrapper(Attr a)
          Creates a wrapper for the given Attr.
 Attr GenericDocument.createAttribute(java.lang.String name)
          DOM: Implements Document.createAttribute(String).
 Attr GenericDocument.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          DOM: Implements Document.createAttributeNS(String,String).
 

Methods in org.apache.batik.dom with parameters of type Attr
protected  Attr NodeWrapper.createAttrWrapper(Attr n)
          Creates a wrapper for the given Attr.
 Attr ElementWrapper.setAttributeNode(Attr newAttr)
          DOM: Implements Element.setAttributeNode(Attr).
 Attr ElementWrapper.removeAttributeNode(Attr oldAttr)
          DOM: Implements Element.removeAttributeNode(Attr).
 Attr ElementWrapper.setAttributeNodeNS(Attr newAttr)
          DOM: Implements Element.setAttributeNodeNS(Attr).
 Attr AbstractElement.setAttributeNode(Attr newAttr)
          DOM: Implements Element.setAttributeNode(Attr).
 Attr AbstractElement.removeAttributeNode(Attr oldAttr)
          DOM: Implements Element.removeAttributeNode(Attr).
 Attr AbstractElement.setAttributeNodeNS(Attr newAttr)
          DOM: Implements Element.setAttributeNodeNS(Attr).
 void AbstractElement.fireDOMAttrModifiedEvent(java.lang.String name, Attr node, java.lang.String oldv, java.lang.String newv, short change)
          Fires a DOMAttrModified event.
protected  void AbstractElement.attrAdded(Attr node, java.lang.String newv)
          Called when an attribute has been added.
protected  void AbstractElement.attrModified(Attr node, java.lang.String oldv, java.lang.String newv)
          Called when an attribute has been modified.
protected  void AbstractElement.attrRemoved(Attr node, java.lang.String oldv)
          Called when an attribute has been removed.
protected  Attr DocumentWrapper.createAttrWrapper(Attr a)
          Creates a wrapper for the given Attr.
 

Constructors in org.apache.batik.dom with parameters of type Attr
AttrWrapper(DocumentWrapper dw, Attr a)
          Creates a new AttrWrapper object.
 

Uses of Attr in org.apache.batik.dom.svg
 

Methods in org.apache.batik.dom.svg that return Attr
 Attr SVGOMDocument.createAttribute(java.lang.String name)
          DOM: Implements Document.createAttribute(String).
 Attr SVGOMDocument.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          DOM: Implements Document.createAttributeNS(String,String).
 

Methods in org.apache.batik.dom.svg with parameters of type Attr
protected  void AbstractElement.attrAdded(Attr node, java.lang.String newv)
          Called when an attribute has been added.
protected  void AbstractElement.attrModified(Attr node, java.lang.String oldv, java.lang.String newv)
          Called when an attribute has been modified.
protected  void AbstractElement.attrRemoved(Attr node, java.lang.String oldv)
          Called when an attribute has been removed.
 void SVGOMAnimatedBoolean.attrAdded(Attr node, java.lang.String newv)
          Called when an Attr node has been added.
 void SVGOMAnimatedBoolean.attrModified(Attr node, java.lang.String oldv, java.lang.String newv)
          Called when an Attr node has been modified.
 void SVGOMAnimatedBoolean.attrRemoved(Attr node, java.lang.String oldv)
          Called when an Attr node has been removed.
 void LiveAttributeValue.attrAdded(Attr node, java.lang.String newv)
          Called when an Attr node has been added.
 void LiveAttributeValue.attrModified(Attr node, java.lang.String oldv, java.lang.String newv)
          Called when an Attr node has been modified.
 void LiveAttributeValue.attrRemoved(Attr node, java.lang.String oldv)
          Called when an Attr node has been removed.
 

Constructors in org.apache.batik.dom.svg with parameters of type Attr
SVGOMAnimatedBoolean(AbstractElement elt, java.lang.String ns, java.lang.String ln, Attr attr, java.lang.String val)
          Creates a new SVGOMAnimatedBoolean.
 

Uses of Attr in org.apache.batik.script
 

Methods in org.apache.batik.script that return Attr
 Attr DocumentProxy.createAttribute(java.lang.String name)
          Creates an Attr of the given name.
 Attr DocumentProxy.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an attribute of the given qualified name and namespace URI.
 

Uses of Attr in org.w3c.dom
 

Methods in org.w3c.dom that return Attr
 Attr Element.getAttributeNode(java.lang.String name)
          Retrieves an attribute node by name.
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 Attr Element.getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves an Attr node by local name and namespace URI.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 Attr Document.createAttribute(java.lang.String name)
          Creates an Attr of the given name.
 Attr Document.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an attribute of the given qualified name and namespace URI.
 

Methods in org.w3c.dom with parameters of type Attr
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 



Copyright © 2001 Apache Software Foundation. All Rights Reserved.