Java XML Attribute from Element getThisClassTypeAttr(Element methodNode)

Here you can find the source of getThisClassTypeAttr(Element methodNode)

Description

get This Class Type Attr

License

Apache License

Declaration

public static Attr getThisClassTypeAttr(Element methodNode) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import org.w3c.dom.*;

public class Main {
    public static Attr getThisClassTypeAttr(Element methodNode) {
        // <... thisClass="thisClass" >        
        return methodNode.getAttributeNode("thisClass");
    }//from  w  w  w . java  2 s  .  c  o m
}

Related

  1. getStringAttributeValue(final Element element, final String attributeName)
  2. getTagAttribute(String sTag, String sAtt, Element eElement)
  3. getTagAttribute(XMLStreamReader xmler, String attribute, String defaultValue)
  4. getTagAttributeRecursive(String sTag, String sAtt, Element eElement)
  5. getTagAttributes(Element element)
  6. getTrimedAttribute(Element elem, String attr_name)
  7. getValue(final Element elem, final String attrName)
  8. getValueAttribute(final Node aNode)
  9. getValueAttributeUri(Element parent, String defaultBaseUri)