jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/AttributeTag.java [54:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getName() {
        return name;
    }

    /**
     * Sets the name of the attribute.
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the namespace URI of the element
     */
    public String getURI() {
        return namespace;
    }

    /**
     * Sets the namespace URI of the element
     */
    public void setURI(String namespace) {
        this.namespace = namespace;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/ElementTag.java [180:202]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getName() {
        return name;
    }

    /**
     * Sets the qualified name of the element
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the namespace URI of the element
     */
    public String getURI() {
        return namespace;
    }

    /**
     * Sets the namespace URI of the element
     */
    public void setURI(String namespace) {
        this.namespace = namespace;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



