synergynetframework.appsystem.contentsystem.items
Interface SketchPad.DrawListener

Enclosing class:
SketchPad

public static interface SketchPad.DrawListener

The listener interface for receiving draw events. The class that is interested in processing a draw event implements this interface, and the object created with that class is registered with a component using the component's addDrawListener method. When the draw event occurs, that object's appropriate method is invoked.

See Also:
DrawEvent

Method Summary
 void itemDrawn(DrawData drawData)
          Item drawn.
 void padCleared()
          Pad cleared.
 

Method Detail

itemDrawn

void itemDrawn(DrawData drawData)
Item drawn.

Parameters:
drawData - the draw data

padCleared

void padCleared()
Pad cleared.