Java XML Attribute Remove removeAttribute(final Attr attributeNode)

Here you can find the source of removeAttribute(final Attr attributeNode)

Description

remove Attribute

License

Apache License

Parameter

Parameter Description
attributeNode a parameter

Declaration

public static void removeAttribute(final Attr attributeNode) 

Method Source Code

//package com.java2s;
/**//from  w  w  w .ja v  a  2  s. co m
 *  Copyright 2012 Sven Ewald
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

import org.w3c.dom.Attr;

import org.w3c.dom.Element;

public class Main {
    /**
     * @param attributeNode
     */
    public static void removeAttribute(final Attr attributeNode) {
        if (attributeNode == null) {
            return;
        }
        final Element owner = attributeNode.getOwnerElement();
        if (owner == null) {
            return;
        }
        owner.removeAttributeNode(attributeNode);
    }
}

Related

  1. removeAllAttributes(Element element)
  2. removeAllAttributes(Node node, String attrName)
  3. removeAllSubNodesExceptAttributes(Node n)
  4. removeAttribute(Element elem, String name)
  5. removeAttribute(Element element, String name)
  6. removeAttribute(final Node iNode, final String iAttributeName)
  7. removeAttribute(final Node node, final String name)
  8. removeAttribute(Node iNode, String iAttributeName)
  9. removeAttribute(Node iNode, String iAttributeName)