blob: 0716bfa63a6aba5be950d7ab48ac85971c5f39fc [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);
Shih-wei Liao82da44b2011-09-01 00:38:04 -070011 static native int fooSII(int x, int y);
Brian Carlstrom9f30b382011-08-28 22:41:38 -070012 static synchronized native Object fooSSIOO(int x, Object y, Object z);
13}