2013-07-03 02:52:38 +00:00
|
|
|
/* Copyright (c) 2008-2013, Avian Contributors
|
2010-09-01 16:13:52 +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;
|
|
|
|
|
|
|
|
public class VMClass {
|
|
|
|
public short flags;
|
|
|
|
public short vmFlags;
|
|
|
|
public short fixedSize;
|
|
|
|
public byte arrayElementSize;
|
|
|
|
public byte arrayDimensions;
|
2010-11-26 19:41:31 +00:00
|
|
|
public int runtimeDataIndex;
|
2010-09-01 16:13:52 +00:00
|
|
|
public int[] objectMask;
|
|
|
|
public byte[] name;
|
|
|
|
public byte[] sourceFile;
|
|
|
|
public VMClass super_;
|
|
|
|
public Object[] interfaceTable;
|
|
|
|
public VMMethod[] virtualTable;
|
|
|
|
public VMField[] fieldTable;
|
|
|
|
public VMMethod[] methodTable;
|
2011-04-01 01:16:57 +00:00
|
|
|
public ClassAddendum addendum;
|
2010-09-01 16:13:52 +00:00
|
|
|
public Object staticTable;
|
|
|
|
public ClassLoader loader;
|
2011-04-01 01:16:57 +00:00
|
|
|
public byte[] source;
|
2010-09-01 16:13:52 +00:00
|
|
|
}
|