A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.xml.core / src / net / sourceforge / phpeclipse / xml / core / internal / model / XMLElement.java
index 2200619..3499412 100644 (file)
@@ -8,7 +8,7 @@
  * Contributors:
  *     Christopher Lenz - initial API
  * 
- * $Id: XMLElement.java,v 1.1 2004-09-02 18:26:55 jsurfer Exp $
+ * $Id: XMLElement.java,v 1.2 2006-10-21 23:13:43 pombredanne Exp $
  */
 
 package net.sourceforge.phpeclipse.xml.core.internal.model;
@@ -31,7 +31,9 @@ public class XMLElement extends SourceReference implements IXMLElement {
        private List children;
 
        private String localName;
+
        private String namespaceURI;
+
        private String prefix;
 
        private IXMLElement parent;
@@ -50,41 +52,42 @@ public class XMLElement extends SourceReference implements IXMLElement {
                super(document, offset, length);
        }
 
-       // IXMLElement Implementation -------------------------------------------------
+       // IXMLElement Implementation
+       // -------------------------------------------------
 
-       /* 
+       /*
         * @see IXMLElement#getChildren()
         */
        public IXMLElement[] getChildren() {
                if (children != null) {
-                       return (IXMLElement[]) children.toArray(
-                                       new IXMLElement[children.size()]);
+                       return (IXMLElement[]) children.toArray(new IXMLElement[children
+                                       .size()]);
                }
                return new IXMLElement[0];
        }
 
-       /* 
+       /*
         * @see IXMLElement#getLocalName()
         */
        public String getLocalName() {
                return localName;
        }
 
-       /* 
+       /*
         * @see IXMLElement#getNamespaceURI()
         */
        public String getNamespaceURI() {
                return namespaceURI;
        }
 
-       /* 
+       /*
         * @see IXMLElement#getPrefix()
         */
        public String getPrefix() {
                return prefix;
        }
 
-       /* 
+       /*
         * @see IXMLElement#getParent()
         */
        public IXMLElement getParent() {