Here you can find the source of getBeanclassAttribute(Node node)
public static String getBeanclassAttribute(Node node)
//package com.java2s; /*-/* w w w .j a v a2 s.c o m*/ * Copyright (C) 2011-2014 by Iwao AVE! * This program is made available under the terms of the MIT License. */ import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; public class Main { public static String getBeanclassAttribute(Node node) { if (node != null) { NamedNodeMap attributes = node.getAttributes(); Node beanclassAttribute = attributes.getNamedItem("beanclass"); if (beanclassAttribute != null) { return beanclassAttribute.getNodeValue(); } } return null; } }