Updated javadoc

This commit is contained in:
endolf 2007-06-28 21:35:13 +00:00
parent 92c7186445
commit 9f2bd073fe
3 changed files with 6 additions and 6 deletions

View file

@ -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>

View file

@ -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");

View file

@ -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>