mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2026-01-10 10:49:57 +01:00
Updated javadoc
This commit is contained in:
parent
92c7186445
commit
9f2bd073fe
|
|
@ -30,7 +30,8 @@
|
|||
<target name="javadoc" depends="init" description="Javadoc for my API.">
|
||||
<javadoc packagenames="net.java.games.input.*"
|
||||
destdir="apidocs"
|
||||
additionalparam="-source 1.4">
|
||||
additionalparam="-source 1.4"
|
||||
excludepackagenames="net.java.games.input.example.*,net.java.games.input.test.*">
|
||||
<sourcepath>
|
||||
<pathelement location="src/java"/>
|
||||
</sourcepath>
|
||||
|
|
|
|||
|
|
@ -150,8 +150,7 @@ public interface Controller {
|
|||
public static final Type MOUSE = new Type("Mouse");
|
||||
|
||||
/**
|
||||
* A keyboard controller (same as BUTTONS)
|
||||
* @see #BUTTONS
|
||||
* A keyboard controller
|
||||
*/
|
||||
public static final Type KEYBOARD = new Type("Keyboard");
|
||||
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@ Top level package for JInput.
|
|||
|
||||
<h2>Package Specification</h2>
|
||||
|
||||
Use -D jinput.plugins (or net.java.games.input.plugins) and specifiy a list of class name to over ride the plugins system. This will force the classes passed to be loaded first, then plugins will be searched for in the default manner (./controller/*.jar)<BR/>
|
||||
Use -D jinput.controllerPluginPath to change the path the plugins mechanism will use to search for plugin Jars.
|
||||
|
||||
Use -Djinput.useDefaultPlugin=false (or net.java.games.input.useDefaultPlugin=false) to disable automatic loading of the default plugin for the platform.<BR/>
|
||||
Use -Djinput.plugins (or net.java.games.input.plugins) and specifiy a list of class name to over ride the plugins system. This will force the classes passed to be loaded first, then plugins will be searched for in the default manner (./controller/*.jar)<BR/>
|
||||
Use -Djinput.controllerPluginPath to change the path the plugins mechanism will use to search for plugin Jars.
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue