X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Futil%2Fxml%2FSimpleXML.java;h=c49f555c56c8f3a8c8124242f6a1dea68a7a829c;hb=7b731a9f93812873b5a4e473edf8a1748209317e;hp=ae0a4871bfa3bc1611602810b9f6f13142fe4161;hpb=b91ef6c88d0b375f956fd9f8436d1453b8ae7aa2;p=jSite.git diff --git a/src/de/todesbaum/util/xml/SimpleXML.java b/src/de/todesbaum/util/xml/SimpleXML.java index ae0a487..c49f555 100644 --- a/src/de/todesbaum/util/xml/SimpleXML.java +++ b/src/de/todesbaum/util/xml/SimpleXML.java @@ -98,6 +98,7 @@ public class SimpleXML { * tree pretty fast. * *
+	 *
 	 * SimpleXML deepNode = topNode.getNodes(new String[] { "person", "address", "number" });
 	 * 
* @@ -107,7 +108,7 @@ public class SimpleXML { */ public SimpleXML getNode(String[] nodeNames) { SimpleXML node = this; - for (String nodeName: nodeNames) { + for (String nodeName : nodeNames) { node = node.getNode(nodeName); } return node; @@ -133,7 +134,7 @@ public class SimpleXML { */ public SimpleXML[] getNodes(String nodeName) { List resultList = new ArrayList(); - for (SimpleXML child: children) { + for (SimpleXML child : children) { if ((nodeName == null) || child.name.equals(nodeName)) { resultList.add(child); } @@ -146,6 +147,7 @@ public class SimpleXML { * With this method you can create deep structures very fast. * *
+	 *
 	 * SimpleXML mouseNode = topNode.append("computer").append("bus").append("usb").append("mouse");
 	 * 
* @@ -279,7 +281,7 @@ public class SimpleXML { * The element to attach this node's children to */ private void addChildren(Element rootElement) { - for (SimpleXML child: children) { + for (SimpleXML child : children) { Element childElement = rootElement.getOwnerDocument().createElement(child.name); rootElement.appendChild(childElement); if (child.value != null) {