aboutsummaryrefslogtreecommitdiffstats
path: root/coreAPI/src
diff options
context:
space:
mode:
authorendolf <[email protected]>2003-07-31 19:37:29 +0000
committerendolf <[email protected]>2003-07-31 19:37:29 +0000
commit413b67d38987408f3a2016cf496166493c7e0223 (patch)
tree598d104eb2787c42e56b425450a9a021e5c14f62 /coreAPI/src
parentb2f4c7ccd86474da65136f8fdf2cfd34d1e94841 (diff)
Added I8042 (ps/2) and Parallel port types
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@24 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'coreAPI/src')
-rw-r--r--coreAPI/src/java/net/java/games/input/Controller.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/coreAPI/src/java/net/java/games/input/Controller.java b/coreAPI/src/java/net/java/games/input/Controller.java
index ebf12ee..c9f3df3 100644
--- a/coreAPI/src/java/net/java/games/input/Controller.java
+++ b/coreAPI/src/java/net/java/games/input/Controller.java
@@ -249,5 +249,16 @@ public interface Controller {
* Serial port
*/
public static final PortType SERIAL = new PortType("Serial port");
+
+ /**
+ * i8042
+ */
+ public static final PortType I8042 = new PortType("i8042 (PS/2)");
+
+ /**
+ * Parallel port
+ */
+ public static final PortType PARALLEL = new PortType("Parallel port");
+
} // class Controller.PortType
} // interface Controller