Here you can find the source of getType(Element elementType)
public static String getType(Element elementType)
//package com.java2s; /*/*from w w w. java 2 s. c o m*/ * Copyright (c) JenSoft API * This source file is part of JenSoft API, All rights reserved. * JENSOFT PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ import org.w3c.dom.Element; public class Main { /** * get XSI type attribute * * @return xsi type */ public static String getType(Element elementType) { return elementType.getAttribute("xsi:type"); } }