mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
25 lines
563 B
Java
25 lines
563 B
Java
package java.lang;
|
|
|
|
public final class Class <T> {
|
|
private short flags;
|
|
private byte vmFlags;
|
|
private byte arrayDimensions;
|
|
private short fixedSize;
|
|
private short arrayElementSize;
|
|
private int[] objectMask;
|
|
private byte[] name;
|
|
private Class super_;
|
|
private Object interfaceTable;
|
|
private Object virtualTable;
|
|
private Object fieldTable;
|
|
private Object methodTable;
|
|
private Object staticTable;
|
|
private Object initializer;
|
|
|
|
private Class() { }
|
|
|
|
public String getName() {
|
|
return new String(name, 0, name.length - 1, false);
|
|
}
|
|
}
|