chandrakanth527 / wiimote-simple

Automatically exported from code.google.com/p/wiimote-simple
0 stars 0 forks source link

Missing WiiNunchukJoystickEvent class from source #1

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The source code is missing the WiiNunchukJoystickEvent. As such, the
following errors are produced when compiling the project:

/ca/ubc/cs/wiimote/event/WiimoteListener.java:40: cannot find symbol
symbol  : class WiiNunchukJoystickEvent
location: interface ca.ubc.cs.wiimote.event.WiimoteListener
    public void wiiNunchukJoystickInput(WiiNunchukJoystickEvent e);
                                        ^
ca/ubc/cs/wiimote/Wiimote.java:138: cannot find symbol
symbol  : class WiiNunchukJoystickEvent
location: class ca.ubc.cs.wiimote.Wiimote
            if (e instanceof WiiNunchukJoystickEvent)
                             ^
ca/ubc/cs/wiimote/Wiimote.java:139: cannot find symbol
symbol  : class WiiNunchukJoystickEvent
location: class ca.ubc.cs.wiimote.Wiimote
                listener.wiiNunchukJoystickInput((WiiNunchukJoystickEvent)e);
                                                  ^
ca/ubc/cs/wiimote/Wiimote.java:428: cannot find symbol
symbol  : class WiiNunchukJoystickEvent
location: class ca.ubc.cs.wiimote.Wiimote.CommandListener
            WiiNunchukJoystickEvent je = new WiiNunchukJoystickEvent(wiimote,
(b.get(0) & 0xFF) - 130, (b.get(1) & 0xFF) - 130);
            ^
ca/ubc/cs/wiimote/Wiimote.java:428: cannot find symbol
symbol  : class WiiNunchukJoystickEvent
location: class ca.ubc.cs.wiimote.Wiimote.CommandListener
            WiiNunchukJoystickEvent je = new WiiNunchukJoystickEvent(wiimote,
(b.get(0) & 0xFF) - 130, (b.get(1) & 0xFF) - 130);

Original issue reported on code.google.com by Torben.S...@gmail.com on 14 Jul 2009 at 8:05

GoogleCodeExporter commented 8 years ago
Note: this issue is in relation to the SVN version of the project.

Original comment by Torben.S...@gmail.com on 14 Jul 2009 at 8:36