A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / IImportDeclaration.java
index 812bc64..90e8150 100644 (file)
  *******************************************************************************/
 package net.sourceforge.phpdt.core;
 
-
 /**
  * Represents an import declaration in Java compilation unit.
  * <p>
  * This interface is not intended to be implemented by clients.
  * </p>
  */
-public interface IImportDeclaration extends IJavaElement, ISourceReference, ISourceManipulation {
-/**
- * Returns the name that has been imported. 
- * For an on-demand import, this includes the trailing <code>".*"</code>.
- * For example, for the statement <code>"import java.util.*"</code>,
- * this returns <code>"java.util.*"</code>.
- * For the statement <code>"import java.util.Hashtable"</code>,
- * this returns <code>"java.util.Hashtable"</code>.
- * 
- * @return the name that has been imported
- */
-String getElementName();
-/**
- * Returns the modifier flags for this import. The flags can be examined using class
- * <code>Flags</code>. Only the static flag is meaningful for import declarations.
- * 
- * @return the modifier flags for this import
- * @exception JavaModelException if this element does not exist or if an
- *      exception occurs while accessing its corresponding resource.
- * @see Flags
- * @since 3.0
- */
-int getFlags() throws JavaModelException;
+public interface IImportDeclaration extends IJavaElement, ISourceReference,
+               ISourceManipulation {
+       /**
+        * Returns the name that has been imported. For an on-demand import, this
+        * includes the trailing <code>".*"</code>. For example, for the
+        * statement <code>"import java.util.*"</code>, this returns
+        * <code>"java.util.*"</code>. For the statement
+        * <code>"import java.util.Hashtable"</code>, this returns
+        * <code>"java.util.Hashtable"</code>.
+        * 
+        * @return the name that has been imported
+        */
+       String getElementName();
 
-/**
- * Returns whether the import is on-demand. An import is on-demand if it ends
- * with <code>".*"</code>.
- * @return true if the import is on-demand, false otherwise
- */
-boolean isOnDemand();
+       /**
+        * Returns the modifier flags for this import. The flags can be examined
+        * using class <code>Flags</code>. Only the static flag is meaningful for
+        * import declarations.
+        * 
+        * @return the modifier flags for this import
+        * @exception JavaModelException
+        *                if this element does not exist or if an exception occurs
+        *                while accessing its corresponding resource.
+        * @see Flags
+        * @since 3.0
+        */
+       int getFlags() throws JavaModelException;
+
+       /**
+        * Returns whether the import is on-demand. An import is on-demand if it
+        * ends with <code>".*"</code>.
+        * 
+        * @return true if the import is on-demand, false otherwise
+        */
+       boolean isOnDemand();
 
 }