Source code of Windows XP (NT5)
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.

17 lines
419 B

  1. import java.awt.event.*;
  2. import java.util.*;
  3. //
  4. //
  5. // ScribbleListener
  6. // This interface is used by the ScribbleC (scribble canvas) class to notify
  7. // a stroke. A class that needs to be notified of strokes in the scribble
  8. // canvas should implement this interface, and register itself in the scribble
  9. // canvas.
  10. //
  11. //
  12. public interface ScribbleL extends EventListener
  13. {
  14. public void strokeCreated(Stroke stroke);
  15. }