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