1 /*
2 Copyright 2000 by Ralph Hartley
3 This software is licenced under the terms of the
4 Gnu Public Licence
5 */
6 public interface Dragable {
7 public void locate(Object what,int x,int y);
8 public void fix();
9 public void delete();
10 public void move(int x,int y);
11 public boolean select(int x,int y, java.awt.Graphics g);
12 }
13