2015-03-13 18:52:59 +00:00
|
|
|
/* Copyright (c) 2008-2015, Avian Contributors
|
2009-09-19 00:01:54 +00:00
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
|
|
for any purpose with or without fee is hereby granted, provided
|
|
|
|
that the above copyright notice and this permission notice appear
|
|
|
|
in all copies.
|
|
|
|
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
package avian;
|
|
|
|
|
2009-09-19 22:21:15 +00:00
|
|
|
public abstract class Singleton {
|
|
|
|
public static native int getInt(Object singleton, int offset);
|
|
|
|
public static native long getLong(Object singleton, int offset);
|
|
|
|
public static native Object getObject(Object singleton, int offset);
|
2014-06-28 18:28:44 +00:00
|
|
|
|
|
|
|
// Fields in types.def
|
2009-09-19 00:01:54 +00:00
|
|
|
}
|