1 18 19 package org.apache.batik.gvt.event; 20 21 import java.util.EventListener ; 22 23 29 public interface SelectionListener extends EventListener { 30 31 35 void selectionChanged(SelectionEvent evt); 36 37 41 void selectionDone(SelectionEvent evt); 42 43 47 void selectionCleared(SelectionEvent evt); 48 49 53 void selectionStarted(SelectionEvent evt); 54 55 } 56 | Popular Tags |