blob: 5203e4a4c4d1dee398c19aa1b75a8be99deb5cfc [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
class MyClass {
native void foo();
native int fooI(int x);
native int fooII(int x, int y);
native double fooDD(double x, double y);
native Object fooIOO(int x, Object y, Object z);
static native Object fooSIOO(int x, Object y, Object z);
static synchronized native Object fooSSIOO(int x, Object y, Object z);
}