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:
bepo23
2009-06-05 08:54:45 +00:00
parent 520c0507c0
commit d6a6705bef
8 changed files with 4 additions and 1197 deletions

View File

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