A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / IPainter.java
index ce0caba..80d2594 100644 (file)
@@ -5,35 +5,38 @@ package net.sourceforge.phpeclipse.phpeditor;
  * All Rights Reserved.
  */
 
-
 public interface IPainter {
 
-  /** Paint reasons */
-  int SELECTION=               0;
-  int TEXT_CHANGE=     1;
-  int KEY_STROKE=              2;
-  int MOUSE_BUTTON= 4;
-  int INTERNAL=                        8;
-  int CONFIGURATION= 16;
-       
-
-  /**  
-   * Disposes this painter.
-   * <p>
-   * XXX: The relationship with deactivate is not yet defined.
-   * </p>
-   * */
-  void dispose();
-       
-  void paint(int reason);
-
-  /**
-   * Deactivates the painter.
-   * <p>
-   * XXX: The relationship with dispose is not yet defined.
-   * </p>
-   */
-  void deactivate(boolean redraw);
-       
-  void setPositionManager(IPositionManager manager);
+       /** Paint reasons */
+       int SELECTION = 0;
+
+       int TEXT_CHANGE = 1;
+
+       int KEY_STROKE = 2;
+
+       int MOUSE_BUTTON = 4;
+
+       int INTERNAL = 8;
+
+       int CONFIGURATION = 16;
+
+       /**
+        * Disposes this painter.
+        * <p>
+        * XXX: The relationship with deactivate is not yet defined.
+        * </p>
+        */
+       void dispose();
+
+       void paint(int reason);
+
+       /**
+        * Deactivates the painter.
+        * <p>
+        * XXX: The relationship with dispose is not yet defined.
+        * </p>
+        */
+       void deactivate(boolean redraw);
+
+       void setPositionManager(IPositionManager manager);
 }