blob: 5203e4a4c4d1dee398c19aa1b75a8be99deb5cfc [file] [log] [blame]
Brian Carlstrom9f30b382011-08-28 22:41:38 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3class 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}