A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / impl / ITypeRequestor.java
index 31d0840..b11ab72 100644 (file)
@@ -16,7 +16,7 @@ import net.sourceforge.phpdt.internal.compiler.env.ISourceType;
 import net.sourceforge.phpdt.internal.compiler.lookup.PackageBinding;
 
 public interface ITypeRequestor {
-       
+
        /**
         * Accept the resolved binary form for the requested type.
         */
@@ -28,10 +28,10 @@ public interface ITypeRequestor {
        void accept(ICompilationUnit unit);
 
        /**
-        * Accept the unresolved source forms for the requested type.
-        * Note that the multiple source forms can be answered, in case the target compilation unit
-        * contains multiple types. The first one is then guaranteed to be the one corresponding to the
-        * requested type.
+        * Accept the unresolved source forms for the requested type. Note that the
+        * multiple source forms can be answered, in case the target compilation
+        * unit contains multiple types. The first one is then guaranteed to be the
+        * one corresponding to the requested type.
         */
        void accept(ISourceType[] sourceType, PackageBinding packageBinding);
 }