Here you can find the source of getThisClassTypeAttr(Element methodNode)
public static Attr getThisClassTypeAttr(Element methodNode)
//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 }