Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
SelectionHandler.java
1 
16 package net.squiz.matrix.ui;
17 
18 import java.awt.Point;
19 
20 
21 public interface SelectionHandler {
22  public boolean canSelect(Point point);
23  public void updateSelection(Point point);
24  public void clearSelection();
25 }