removed unneeded code
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / data / xml / XmlElement.java
diff --git a/src/main/java/eu/svjatoslav/commons/data/xml/XmlElement.java b/src/main/java/eu/svjatoslav/commons/data/xml/XmlElement.java
deleted file mode 100755 (executable)
index 27cac0e..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Svjatoslav Commons - shared library of common functionality.
- * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 3 of the GNU Lesser General Public License
- * or later as published by the Free Software Foundation.
- */
-
-package eu.svjatoslav.commons.data.xml;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import org.w3c.dom.Element;
-import org.w3c.dom.NamedNodeMap;
-import org.w3c.dom.Node;
-
-public class XmlElement {
-
-       Element element;
-
-       public XmlElement(final Element element) {
-               this.element = element;
-       }
-
-       public List<String> getAttributeNames() {
-               final ArrayList<String> result = new ArrayList<String>();
-
-               final NamedNodeMap attributes = element.getAttributes();
-
-               for (int i = 0; i < attributes.getLength(); i++) {
-                       final Node node = attributes.item(i);
-
-                       result.add(node.getNodeName());
-               }
-
-               return result;
-       }
-
-       public String getAttributeValue(final String attributeName) {
-               return element.getAttribute(attributeName);
-       }
-
-       @Override
-       public String toString() {
-               final StringBuffer result = new StringBuffer();
-
-               result.append("node name: " + element.getNodeName() + "\n");
-
-               final NamedNodeMap attributes = element.getAttributes();
-
-               for (int i = 0; i < attributes.getLength(); i++) {
-                       final Node node = attributes.item(i);
-
-                       result.append("    " + node.getNodeName() + "\n");
-               }
-
-               return result.toString();
-       }
-
-}