Show ManyMouse.java syntax highlighted
package ebe.manymouse.jni;
/**
* This class is the link to ManyMouse project via JNI
* Code is borrowed from the ManyMouse project: http://icculus.org/manymouse/
*/
public class ManyMouse
{
// Native method hooks.
public native static synchronized int Init();
public native static synchronized void Quit();
public native static synchronized String DeviceName(int index);
public native static synchronized boolean PollEvent(ManyMouseEvent event);
// JNI link.
static {
System.loadLibrary("ManyMouseJava");
}
}
See more files for this project here
The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.
Project homepage:
http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other
ManyMouse.java
ManyMouseEvent.java