Renamed package namespaces to assure a better usability with other libraries.
git-svn-id: svn://svn.code.sf.net/p/wiigee/code/trunk@87 c7eff9ee-dd40-0410-8832-91a4d88773cf
This commit is contained in:
@@ -25,16 +25,16 @@
|
||||
package org.wiigee.event;
|
||||
|
||||
import java.util.EventObject;
|
||||
import org.wiigee.device.Wiimote;
|
||||
import org.wiigee.device.Device;
|
||||
|
||||
public class InfraredEvent extends EventObject {
|
||||
|
||||
protected Wiimote wiimote;
|
||||
protected Device wiimote;
|
||||
protected int[][] coordinates;
|
||||
protected int[] size;
|
||||
protected boolean[] valid;
|
||||
|
||||
public InfraredEvent(Wiimote source, int[][] coordinates, int[] size) {
|
||||
public InfraredEvent(Device source, int[][] coordinates, int[] size) {
|
||||
super(source);
|
||||
this.coordinates=coordinates;
|
||||
this.size=size;
|
||||
@@ -44,7 +44,7 @@ public class InfraredEvent extends EventObject {
|
||||
}
|
||||
}
|
||||
|
||||
public Wiimote getSource() {
|
||||
public Device getSource() {
|
||||
return this.wiimote;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user