From 52ad786cb0d86aab3c3b5dd1336a473746191b23 Mon Sep 17 00:00:00 2001 From: endolf Date: Thu, 31 Jul 2003 19:37:29 +0000 Subject: [PATCH] Added I8042 (ps/2) and Parallel port types --- coreAPI/src/java/net/java/games/input/Controller.java | 11 +++++++++++ 1 file changed, 11 insertions(+) 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