A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / IJavaElementRequestor.java
index 79f5725..0cef475 100644 (file)
@@ -16,22 +16,26 @@ import net.sourceforge.phpdt.core.IPackageFragment;
 import net.sourceforge.phpdt.core.IType;
 
 /**
- * This interface is used by IRequestorNameLookup. As results
- * are found by IRequestorNameLookup, they are reported to this
- * interface. An IJavaElementRequestor is able to cancel
- * at any time (that is, stop receiving results), by responding
- * <code>true</code> to <code>#isCancelled</code>.
+ * This interface is used by IRequestorNameLookup. As results are found by
+ * IRequestorNameLookup, they are reported to this interface. An
+ * IJavaElementRequestor is able to cancel at any time (that is, stop receiving
+ * results), by responding <code>true</code> to <code>#isCancelled</code>.
  */
 public interface IJavaElementRequestor {
-public void acceptField(IField field);
-//public void acceptInitializer(IInitializer initializer);
-public void acceptMemberType(IType type);
-public void acceptMethod(IMethod method);
-public void acceptPackageFragment(IPackageFragment packageFragment);
-public void acceptType(IType type);
-/**
- * Returns <code>true</code> if this IJavaElementRequestor does
- * not want to receive any more results.
- */
-boolean isCanceled();
+       public void acceptField(IField field);
+
+       // public void acceptInitializer(IInitializer initializer);
+       public void acceptMemberType(IType type);
+
+       public void acceptMethod(IMethod method);
+
+       public void acceptPackageFragment(IPackageFragment packageFragment);
+
+       public void acceptType(IType type);
+
+       /**
+        * Returns <code>true</code> if this IJavaElementRequestor does not want
+        * to receive any more results.
+        */
+       boolean isCanceled();
 }