diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /java/EAC/InputMode.java | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'java/EAC/InputMode.java')
-rw-r--r-- | java/EAC/InputMode.java | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/java/EAC/InputMode.java b/java/EAC/InputMode.java deleted file mode 100644 index c44e4a45c4d..00000000000 --- a/java/EAC/InputMode.java +++ /dev/null @@ -1,32 +0,0 @@ -/** - * Title: InputMode - * Description: Maintains Configurator state for deciding how to handle input - */ -package EAC; - -public class InputMode { - - public final int COMMAND = 0; - public final int SELECT = 1; - public final int CUT = 2; - public final int COPY = 3; - public final int PASTE = 4; - public final int EDIT = 5; - public final int RESIZE = 6; - - protected int mode; - - protected Primitive current_shape; - - public InputMode() { - mode = COMMAND; - } /* constructor */ - - public int getMode() { - return mode; - } /* getMode */ - - protected void setMode(int m) { - mode = m; - } /* setMode */ -}
\ No newline at end of file |