1 package net.sourceforge.phpeclipse.phpeditor;
4 * (c) Copyright IBM Corp. 2000, 2001.
9 public interface IPainter {
17 int CONFIGURATION= 16;
21 * Disposes this painter.
23 * XXX: The relationship with deactivate is not yet defined.
28 void paint(int reason);
31 * Deactivates the painter.
33 * XXX: The relationship with dispose is not yet defined.
36 void deactivate(boolean redraw);
38 void setPositionManager(IPositionManager manager);