Uses of Class
org.cdmckay.coffeedom.Attribute

Packages that use Attribute
org.cdmckay.coffeedom Classes to represent the components of an XML document. 
org.cdmckay.coffeedom.output Classes to output CoffeeDOM documents to various destinations. 
 

Uses of Attribute in org.cdmckay.coffeedom
 

Methods in org.cdmckay.coffeedom that return Attribute
 Attribute UncheckedCoffeeDOMFactory.attribute(String name, String value)
           
 Attribute DefaultCoffeeDOMFactory.attribute(String name, String value)
           
 Attribute CoffeeDOMFactory.attribute(String name, String value)
          This will create a new Attribute with the specified (local) name and value, and does not place the attribute in a Namespace.
 Attribute UncheckedCoffeeDOMFactory.attribute(String name, String value, Attribute.Type type)
           
 Attribute DefaultCoffeeDOMFactory.attribute(String name, String value, Attribute.Type type)
           
 Attribute CoffeeDOMFactory.attribute(String name, String value, Attribute.Type type)
          This will create a new Attribute with the specified (local) name, value and type, and does not place the attribute in a Namespace.
 Attribute UncheckedCoffeeDOMFactory.attribute(String name, String value, Attribute.Type type, Namespace namespace)
           
 Attribute DefaultCoffeeDOMFactory.attribute(String name, String value, Attribute.Type type, Namespace namespace)
           
 Attribute CoffeeDOMFactory.attribute(String name, String value, Attribute.Type type, Namespace namespace)
          This will create a new Attribute with the specified (local) name, value, and type, and in the provided Namespace.
 Attribute UncheckedCoffeeDOMFactory.attribute(String name, String value, Namespace namespace)
           
 Attribute DefaultCoffeeDOMFactory.attribute(String name, String value, Namespace namespace)
           
 Attribute CoffeeDOMFactory.attribute(String name, String value, Namespace namespace)
           This will create a new Attribute with the specified (local) name and value, and in the provided Namespace.
 Attribute Attribute.clone()
          This will return a clone of this Attribute.
 Attribute Attribute.detach()
          This detaches the Attribute from its parent, or does nothing if the Attribute has no parent.
 Attribute Element.getAttribute(String name)
           This returns the attribute for this element with the given name and within no namespace, or null if no such attribute exists.
 Attribute Element.getAttribute(String name, Namespace ns)
           This returns the attribute for this element with the given name and within the given Namespace, or null if no such attribute exists.
 Attribute Attribute.setAttributeType(Attribute.Type type)
          This will set the type of the Attribute.
 Attribute Attribute.setName(String name)
          This sets the local name of the Attribute.
 Attribute Attribute.setNamespace(Namespace namespace)
          This sets this Attribute's Namespace.
protected  Attribute Attribute.setParent(Element parent)
          This will set the parent of this Attribute.
 Attribute Attribute.setValue(String value)
          This will set the value of the Attribute.
 

Methods in org.cdmckay.coffeedom that return types with arguments of type Attribute
 List<Attribute> Element.getAttributes()
           This returns the complete set of attributes for this element, as a List of Attribute objects in no particular order, or an empty list if there are none.
 

Methods in org.cdmckay.coffeedom with parameters of type Attribute
static String Verifier.checkNamespaceCollision(Attribute attribute, Element element)
          Check if Attribute's namespace collides with a Element's namespace.
static String Verifier.checkNamespaceCollision(Namespace namespace, Attribute attribute)
          Check if a Namespace collides with a Attribute's namespace.
 boolean Element.removeAttribute(Attribute attribute)
           This removes the supplied Attribute should it exist.
 Element Element.setAttribute(Attribute attribute)
           This sets an attribute value for this element.
 void UncheckedCoffeeDOMFactory.setAttribute(Element parent, Attribute a)
           
 void DefaultCoffeeDOMFactory.setAttribute(Element parent, Attribute a)
           
 void CoffeeDOMFactory.setAttribute(Element element, Attribute a)
           
 

Method parameters in org.cdmckay.coffeedom with type arguments of type Attribute
 Element Element.setAttributes(Collection<? extends Attribute> newAttributes)
           This sets the attributes of the element.
 

Uses of Attribute in org.cdmckay.coffeedom.output
 

Method parameters in org.cdmckay.coffeedom.output with type arguments of type Attribute
protected  void XMLOutputter.printAttributes(Writer out, List<Attribute> attributes, Element parent, XMLOutputter.NamespaceStack namespaces)
          This will handle printing of a Attribute list.
 



Copyright © 2011. All Rights Reserved.