examples: remove annotations used to avoid bug in mnit_simple
[nit.git] / examples / mnit_simple / src / simple_android.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012-2014 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 module simple_android is
18 android_manifest("""<uses-permission android:name="android.permission.VIBRATE" />""")
19 end
20
21 import simple
22 import mnit_android
23 import serialization
24
25 in "Java" `{
26 import android.content.Context;
27 import android.widget.Toast;
28 `}
29
30 redef class App
31 redef fun input( ie )
32 do
33 if ie isa PointerEvent and ie.depressed then
34 test_java_ffi
35 end
36 return super
37 end
38
39 fun test_java_ffi import native_activity in "Java" `{
40 // + Log (no context needed)
41 android.util.Log.d("mnit_simple", "Java within NIT!!!");
42
43 // - Context needed from now on
44 // NativeActivity is a Java sub-class of Context
45 final android.app.NativeActivity context = App_native_activity(recv);
46
47 // Vibration
48 android.os.Vibrator v = (android.os.Vibrator)
49 context.getSystemService(android.content.Context.VIBRATOR_SERVICE);
50 v.vibrate(500);
51
52 // - UI thread needed from now on
53 context.runOnUiThread(new Runnable() {
54 @Override
55 public void run() {
56 // + Toast
57 CharSequence text = "Java within Nit!";
58 int duration = Toast.LENGTH_SHORT;
59 Toast toast = Toast.makeText(context, text, duration);
60 toast.show();
61 }
62 });
63 `}
64 end
65
66 class Point
67 auto_serializable
68 super Serializable
69
70 var x: Int
71 var y: Int
72
73 init(x, y: Int)
74 do
75 self.x = x
76 self.y = y
77 end
78
79 redef fun to_s do return "({x}, {y})"
80 end