A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / jdom / IDOMPackage.java
index 49333c8..c085d3a 100644 (file)
@@ -9,28 +9,31 @@
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
 package net.sourceforge.phpdt.core.jdom;
+
 /**
- * Represents a package declaration. 
- * The corresponding syntactic unit is PackageDeclaration (JLS2 7.4). 
- * A Package has no children, and its parent is a compilation unit.
+ * Represents a package declaration. The corresponding syntactic unit is
+ * PackageDeclaration (JLS2 7.4). A Package has no children, and its parent is a
+ * compilation unit.
  * <p>
  * This interface is not intended to be implemented by clients.
  * </p>
  */
 public interface IDOMPackage extends IDOMNode {
-/**
- * The <code>IDOMPackage</code> refinement of this <code>IDOMNode</code>
- * method returns the name of this package declaration, or <code>null</code>
- * if it has none. The syntax for a package name corresponds to PackageName
- * as defined by PackageDeclaration (JLS2 7.4).
- */
-public String getName();
-/**
- * The <code>IDOMPackage</code> refinement of this <code>IDOMNode</code>
- * method sets the name of this package declaration. The syntax for a package
- * name corresponds to PackageName as defined by PackageDeclaration (JLS2 7.4).
- * A <code>null</code> name indicates an empty package declaration; that is,
- * <code>getContents</code> returns the empty string.
- */
-public void setName(String name);
+       /**
+        * The <code>IDOMPackage</code> refinement of this <code>IDOMNode</code>
+        * method returns the name of this package declaration, or <code>null</code>
+        * if it has none. The syntax for a package name corresponds to PackageName
+        * as defined by PackageDeclaration (JLS2 7.4).
+        */
+       public String getName();
+
+       /**
+        * The <code>IDOMPackage</code> refinement of this <code>IDOMNode</code>
+        * method sets the name of this package declaration. The syntax for a
+        * package name corresponds to PackageName as defined by PackageDeclaration
+        * (JLS2 7.4). A <code>null</code> name indicates an empty package
+        * declaration; that is, <code>getContents</code> returns the empty
+        * string.
+        */
+       public void setName(String name);
 }