All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xmlpull.v1.builder.XmlAttribute Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.xmlpull.v1.builder;

/**
 * This is immutable value object that represents
 * Attribute
 * Information Item
 * with exception of references property.
 * Note: namespace and prefix properties are folded into XmlNamespace value object.
 *
 * @version $Revision: 1.1 $
 * @author Octav Chipara
 * @author Aleksander Slominski
 */
public interface XmlAttribute
{
    public XmlElement getOwner();
    //public XmlElement setOwner(XmlElement newOwner);
    //public String getPrefix();

    /** return namespaceName form getNamespace() o null if attribute has no namespace */
    public String getNamespaceName();
    public XmlNamespace getNamespace();
    public String getName();
    public String getValue();
    public String getType();
    public boolean isSpecified();
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy