Java tutorial
//package com.java2s; /*---------------- FILE HEADER ------------------------------------------ This file is part of deegree. Copyright (C) 2001 by: EXSE, Department of Geography, University of Bonn http://www.giub.uni-bonn.de/exse/ lat/lon Fitzke/Fretter/Poth GbR http://www.lat-lon.de This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Contact: Andreas Poth lat/lon Fitzke/Fretter/Poth GbR Meckenheimer Allee 176 53115 Bonn Germany E-Mail: poth@lat-lon.de Jens Fitzke Department of Geography University of Bonn Meckenheimer Allee 166 53115 Bonn Germany E-Mail: jens.fitzke@uni-bonn.de ---------------------------------------------------------------------------*/ import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; public class Main { /** * @param vertexStyleNode * @return the WKN */ public static String toWellKnowName(Node vertexStyleNode) { if (vertexStyleNode == null) { return ""; } String value = "square"; try { NamedNodeMap atts = vertexStyleNode.getAttributes(); String nodeVal = atts.getNamedItem("class").getNodeValue(); if (nodeVal.indexOf("Square") > -1) { // already there } else if (nodeVal.indexOf("Circle") > -1) { value = "circle"; } else if (nodeVal.indexOf("Cross") > -1) { value = "cross"; } else if (nodeVal.indexOf("Star") > -1) { value = "star"; } else if (nodeVal.indexOf("Triangle") > -1) { value = "triangle"; } } catch (Exception e) { e.printStackTrace(); } return value; } }