Brian Carlstrom | 9f30b38 | 2011-08-28 22:41:38 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
2 | |||||
3 | class MyClass { | ||||
4 | native void foo(); | ||||
5 | native int fooI(int x); | ||||
6 | native int fooII(int x, int y); | ||||
7 | native double fooDD(double x, double y); | ||||
8 | native Object fooIOO(int x, Object y, Object z); | ||||
9 | static native Object fooSIOO(int x, Object y, Object z); | ||||
10 | static synchronized native Object fooSSIOO(int x, Object y, Object z); | ||||
11 | } |