aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/OSX/src/java/net/java/games/input/OSXKeyboard.java
blob: f745701303450d5770b82d6442fc0d7037907b5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package net.java.games.input;

/**
 * Created by IntelliJ IDEA.
 * User: gpierce
 * Date: Aug 2, 2003
 * Time: 3:57:58 PM
 * To change this template use Options | File Templates.
 */
public class OSXKeyboard extends InputController
{
    public OSXKeyboard( OSXEnvironmentPlugin plugin )
    {
        super( plugin );
    }

    public OSXKeyboard( OSXEnvironmentPlugin plugin, long lpDevice, String productName, int usage )
    {
        super( plugin, lpDevice, productName, usage );
    }

    public OSXKeyboard( OSXEnvironmentPlugin plugin, long lpDevice, String transportKey, int vendorID, int productID, int version, String manufacturer, String productName, String serialNumber, int usbLocationID, int usagePage, int usage)
    {
        super( plugin, lpDevice, transportKey, vendorID, productID, version, manufacturer, productName, serialNumber, usbLocationID, usagePage, usage );
    }
}