aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorendolf <[email protected]>2007-06-28 21:35:13 +0000
committerendolf <[email protected]>2007-06-28 21:35:13 +0000
commite1dbe4bc1221ba32247b01743b4889ded5419c91 (patch)
tree031f3246b41fe004a93de8228da0035f5782429f
parent1930bef63835ce80782deecfefea9d8637550e8c (diff)
Updated javadoc
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@192 e343933a-64c8-49c5-92b1-88f2ce3e89e8
-rw-r--r--coreAPI/build.xml3
-rw-r--r--coreAPI/src/java/net/java/games/input/Controller.java3
-rw-r--r--coreAPI/src/java/net/java/games/input/package.html6
3 files changed, 6 insertions, 6 deletions
diff --git a/coreAPI/build.xml b/coreAPI/build.xml
index a87fdd6..d4986ed 100644
--- a/coreAPI/build.xml
+++ b/coreAPI/build.xml
@@ -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>
diff --git a/coreAPI/src/java/net/java/games/input/Controller.java b/coreAPI/src/java/net/java/games/input/Controller.java
index 61faaff..4d96964 100644
--- a/coreAPI/src/java/net/java/games/input/Controller.java
+++ b/coreAPI/src/java/net/java/games/input/Controller.java
@@ -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");
diff --git a/coreAPI/src/java/net/java/games/input/package.html b/coreAPI/src/java/net/java/games/input/package.html
index 666595d..9e26d81 100644
--- a/coreAPI/src/java/net/java/games/input/package.html
+++ b/coreAPI/src/java/net/java/games/input/package.html
@@ -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> \ No newline at end of file