Uses of Interface
net.java.games.input.Controller
-
Packages that use Controller Package Description net.java.games.input -
-
Uses of Controller in net.java.games.input
Classes in net.java.games.input that implement Controller Modifier and Type Class Description class
AbstractController
An AbstractController is a skeleton implementation of a controller that contains a fixed number of axes, controllers, and rumblers.class
Keyboard
A Keyboard is a type of controller consisting of a single controller, they keypad, which contains several axes (the keys).class
LinuxCombinedController
class
Mouse
A Mouse is a type of controller consisting of two child controllers, a ball and a button pad.class
WinTabDevice
Methods in net.java.games.input that return Controller Modifier and Type Method Description Controller
ControllerEvent. getController()
Returns the controller for this event.Controller[]
AbstractController. getControllers()
Returns the controllers connected to make up this controller, or an empty array if this controller contains no child controllers.Controller[]
AWTEnvironmentPlugin. getControllers()
Controller[]
Controller. getControllers()
Returns the controllers connected to make up this controller, or an empty array if this controller contains no child controllers.abstract Controller[]
ControllerEnvironment. getControllers()
Returns a list of all controllers available to this environment, or an empty array if there are no controllers in this environment.Controller[]
DirectAndRawInputEnvironmentPlugin. getControllers()
Controller[]
DirectInputEnvironmentPlugin. getControllers()
Controller[]
LinuxEnvironmentPlugin. getControllers()
Returns a list of all controllers available to this environment, or an empty array if there are no controllers in this environment.Controller[]
OSXEnvironmentPlugin. getControllers()
Controller[]
RawInputEnvironmentPlugin. getControllers()
Controller[]
WinTabContext. getControllers()
Controller[]
WinTabEnvironmentPlugin. getControllers()
Controller[]
AWTEnvironmentPlugin. rescanControllers()
Returns a list of all controllers available to this environment, or an empty array if there are no controllers in this environment.abstract Controller[]
ControllerEnvironment. rescanControllers()
Rescans the devices and provides a list of new controllers.Controller[]
DirectAndRawInputEnvironmentPlugin. rescanControllers()
Controller[]
DirectInputEnvironmentPlugin. rescanControllers()
Controller[]
LinuxEnvironmentPlugin. rescanControllers()
Controller[]
OSXEnvironmentPlugin. rescanControllers()
Controller[]
RawInputEnvironmentPlugin. rescanControllers()
Controller[]
WinTabEnvironmentPlugin. rescanControllers()
Methods in net.java.games.input with parameters of type Controller Modifier and Type Method Description protected void
ControllerEnvironment. fireControllerAdded(Controller c)
Creates and sends an event to the controller listeners that a controller has been added.protected void
ControllerEnvironment. fireControllerRemoved(Controller c)
Creates and sends an event to the controller listeners that a controller has been lost.Constructors in net.java.games.input with parameters of type Controller Constructor Description AbstractController(java.lang.String name, Component[] components, Controller[] children, Rumbler[] rumblers)
Protected constructor for a controller containing the specified axes, child controllers, and rumblersControllerEvent(Controller c)
Creates a controller event object.Keyboard(java.lang.String name, Component[] keys, Controller[] children, Rumbler[] rumblers)
Protected constructor.Mouse(java.lang.String name, Component[] components, Controller[] children, Rumbler[] rumblers)
-