1 /*
2 * Copyright 2007-2008 motej
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package motejx.adapters;
17
18 import motejx.extensions.classic.ClassicControllerAnalogListener;
19 import motejx.extensions.classic.LeftAnalogStickEvent;
20 import motejx.extensions.classic.LeftAnalogTriggerEvent;
21 import motejx.extensions.classic.RightAnalogStickEvent;
22 import motejx.extensions.classic.RightAnalogTriggerEvent;
23
24 /**
25 *
26 * <p>
27 * @author <a href="mailto:vfritzsch@users.sourceforge.net">Volker Fritzsch</a>
28 */
29 public abstract class AbstractClassicControllerAnalogAdapter implements
30 ClassicControllerAnalogListener {
31
32 /* (non-Javadoc)
33 * @see motejx.extensions.classic.ClassicControllerAnalogListener#leftAnalogStickChanged(motejx.extensions.classic.LeftAnalogStickEvent)
34 */
35 public void leftAnalogStickChanged(LeftAnalogStickEvent evt) {
36 }
37
38 /* (non-Javadoc)
39 * @see motejx.extensions.classic.ClassicControllerAnalogListener#leftAnalogTriggerChanged(motejx.extensions.classic.LeftAnalogTriggerEvent)
40 */
41 public void leftAnalogTriggerChanged(LeftAnalogTriggerEvent evt) {
42 }
43
44 /* (non-Javadoc)
45 * @see motejx.extensions.classic.ClassicControllerAnalogListener#rightAnalogStickChanged(motejx.extensions.classic.RightAnalogStickEvent)
46 */
47 public void rightAnalogStickChanged(RightAnalogStickEvent evt) {
48 }
49
50 /* (non-Javadoc)
51 * @see motejx.extensions.classic.ClassicControllerAnalogListener#rightAnalogTriggerChanged(motejx.extensions.classic.RightAnalogTriggerEvent)
52 */
53 public void rightAnalogTriggerChanged(RightAnalogTriggerEvent evt) {
54 }
55
56 }