1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / IJavaStatusConstants.java
index 157fff5..a5c7fbd 100644 (file)
 package net.sourceforge.phpdt.internal.ui;
 
 /**
- * Defines status codes relevant to the Java UI plug-in. When a 
- * Core exception is thrown, it contain a status object describing
- * the cause of the exception. The status objects originating from the
- * Java UI plug-in use the codes defined in this interface.
-  */
+ * Defines status codes relevant to the Java UI plug-in. When a Core exception
+ * is thrown, it contain a status object describing the cause of the exception.
+ * The status objects originating from the Java UI plug-in use the codes defined
+ * in this interface.
+ */
 public interface IJavaStatusConstants {
 
        // Java UI status constants start at 10000 to make sure that we don't
        // collide with resource and java model constants.
-       
-       public static final int INTERNAL_ERROR= 10001;
-       
+
+       public static final int INTERNAL_ERROR = 10001;
+
        /**
-        * Status constant indicating that an exception occurred on
-        * storing or loading templates.
+        * Status constant indicating that an exception occurred on storing or
+        * loading templates.
         */
        public static final int TEMPLATE_IO_EXCEPTION = 10002;
 
@@ -33,17 +33,17 @@ public interface IJavaStatusConstants {
         * Status constant indicating that an validateEdit call has changed the
         * content of a file on disk.
         */
-       public static final int VALIDATE_EDIT_CHANGED_CONTENT= 10003;
-       
+       public static final int VALIDATE_EDIT_CHANGED_CONTENT = 10003;
+
        /**
-        * Status constant indicating that a <tt>ChangeAbortException</tt> has been
-        * caught.
-        */
-       public static final int CHANGE_ABORTED= 10004;
+        * Status constant indicating that a <tt>ChangeAbortException</tt> has
+        * been caught.
+        */
+       public static final int CHANGE_ABORTED = 10004;
 
        /**
-        * Status constant indicating that an exception occurred while
-        * parsing template file.
+        * Status constant indicating that an exception occurred while parsing
+        * template file.
         */
        public static final int TEMPLATE_PARSE_EXCEPTION = 10005;
- }
+}