A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / corext / codemanipulation / IRequestQuery.java
index 3f24fa1..a7b9989 100644 (file)
@@ -12,19 +12,21 @@ package net.sourceforge.phpdt.internal.corext.codemanipulation;
 
 import net.sourceforge.phpdt.core.IMember;
 
-
 /**
- * Query object to let operations callback the actions.
- * Example is a callback to ask if a existing method should be replaced.
+ * Query object to let operations callback the actions. Example is a callback to
+ * ask if a existing method should be replaced.
  */
 public interface IRequestQuery {
-       
+
        // return codes
-       public static final int CANCEL= 0;
-       public static final int NO= 1;
-       public static final int YES= 2;
-       public static final int YES_ALL= 3;
-       
+       public static final int CANCEL = 0;
+
+       public static final int NO = 1;
+
+       public static final int YES = 2;
+
+       public static final int YES_ALL = 3;
+
        /**
         * Do the callback. Returns YES, NO, YES_ALL or CANCEL
         */