mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
18 lines
419 B
import java.awt.event.*;
|
|
import java.util.*;
|
|
|
|
//
|
|
//
|
|
// ScribbleListener
|
|
// This interface is used by the ScribbleC (scribble canvas) class to notify
|
|
// a stroke. A class that needs to be notified of strokes in the scribble
|
|
// canvas should implement this interface, and register itself in the scribble
|
|
// canvas.
|
|
//
|
|
//
|
|
public interface ScribbleL extends EventListener
|
|
{
|
|
public void strokeCreated(Stroke stroke);
|
|
}
|
|
|
|
|