Java tutorial
/* * Copyright (C) 2014 Chingo247 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.chingo247.structureapi.plan.overview; import com.chingo247.structureapi.exception.StructureDataException; import com.chingo247.structureapi.plan.document.Validator; import com.chingo247.structureapi.util.Elements; import com.chingo247.structureapi.util.Nodes; import java.util.List; import org.dom4j.Element; import org.dom4j.Node; /** * * @author Chingo */ public class StructureOverviewValidator extends Validator { public StructureOverviewValidator() { super(Nodes.STRUCTURE_OVERVIEWS_NODE); } @Override public void validate(Element e) throws StructureDataException { if (!e.getName().equals(Elements.STRUCTURE_OVERVIEWS)) { throw new AssertionError( "Expected '" + Elements.STRUCTURE_OVERVIEWS + "' but got '" + e.getName() + "'"); } List<Node> nodes = e.selectNodes(Elements.STRUCTURE_OVERVIEW); if (nodes != null && !nodes.isEmpty()) { int count = 0; for (Node n : nodes) { Node xNode = n.selectSingleNode(Elements.X); Node yNode = n.selectSingleNode(Elements.Y); Node zNode = n.selectSingleNode(Elements.Z); if (xNode == null) { throw new StructureDataException( "Missing 'X' node for '" + Elements.STRUCTURE_OVERVIEW + "#" + count); } if (yNode == null) { throw new StructureDataException( "Missing 'Y' node for '" + Elements.STRUCTURE_OVERVIEW + "#" + count); } if (zNode == null) { throw new StructureDataException( "Missing 'Z' node for '" + Elements.STRUCTURE_OVERVIEW + "#" + count); } try { Integer.parseInt(xNode.getText()); } catch (NumberFormatException nfe) { throw new StructureDataException( "Invalid X value for '" + Elements.STRUCTURE_OVERVIEW + "#" + count); } try { Integer.parseInt(yNode.getText()); } catch (NumberFormatException nfe) { throw new StructureDataException( "Invalid Y value for '" + Elements.STRUCTURE_OVERVIEW + "#" + count); } try { Integer.parseInt(zNode.getText()); } catch (NumberFormatException nfe) { throw new StructureDataException( "Invalid Z value for '" + Elements.STRUCTURE_OVERVIEW + "#" + count); } count++; } } } }