Here you can find the source of getSimpleName(final Node node)
Parameter | Description |
---|---|
node | node. |
public static String getSimpleName(final Node node)
//package com.java2s; /**/*from w w w . ja va 2s. c o m*/ * Copyright ? Microsoft Open Technologies, Inc. * * All Rights Reserved * * 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 * * THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS * OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION * ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A * PARTICULAR PURPOSE, MERCHANTABILITY OR NON-INFRINGEMENT. * * See the Apache License, Version 2.0 for the specific language * governing permissions and limitations under the License. */ import org.w3c.dom.Node; public class Main { /** * Gets XML node name. * * @param node node. * @return node name. */ public static String getSimpleName(final Node node) { return node.getLocalName() == null ? node.getNodeName().substring(node.getNodeName().indexOf(':') + 1) : node.getLocalName(); } }