blob: f462363b909454ecd083e61aa53f2288aec10bd5 [file] [log] [blame]
Brian Carlstrom9f30b382011-08-28 22:41:38 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3class MyClass {
Elliott Hughesa2501992011-08-26 19:39:54 -07004 native void throwException();
Brian Carlstrom9f30b382011-08-28 22:41:38 -07005 native void foo();
6 native int fooI(int x);
7 native int fooII(int x, int y);
8 native double fooDD(double x, double y);
9 native Object fooIOO(int x, Object y, Object z);
10 static native Object fooSIOO(int x, Object y, Object z);
11 static synchronized native Object fooSSIOO(int x, Object y, Object z);
12}