A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / env / ISourceImport.java
index dd5932b..2dcd1ff 100644 (file)
@@ -12,34 +12,33 @@ package net.sourceforge.phpdt.internal.compiler.env;
 
 public interface ISourceImport {
 
-/**
- * Answer the source end position of the import declaration.
- */
-
-int getDeclarationSourceEnd();
-/**
- * Answer the source start position of the import declaration.
- */
-
-int getDeclarationSourceStart();
-
-/**
- * Answer an int whose bits are set according the access constants
- * defined by the VM spec.
- * Since Java 1.5, static imports can be defined.
- */ 
-int getModifiers();
-
-/**
- * Answer the name of the import.
- * A name is a simple name or a qualified, dot separated name.
- * For example, Hashtable or java.util.Hashtable.
- */
-char[] getName();      
-
-/**
- * Answer whether the import is on demand or not
- * On demand import names have no trailing star
- */
-boolean onDemand();
+       /**
+        * Answer the source end position of the import declaration.
+        */
+
+       int getDeclarationSourceEnd();
+
+       /**
+        * Answer the source start position of the import declaration.
+        */
+
+       int getDeclarationSourceStart();
+
+       /**
+        * Answer an int whose bits are set according the access constants defined
+        * by the VM spec. Since Java 1.5, static imports can be defined.
+        */
+       int getModifiers();
+
+       /**
+        * Answer the name of the import. A name is a simple name or a qualified,
+        * dot separated name. For example, Hashtable or java.util.Hashtable.
+        */
+       char[] getName();
+
+       /**
+        * Answer whether the import is on demand or not On demand import names have
+        * no trailing star
+        */
+       boolean onDemand();
 }