Searched defs:UninitializedType (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DUninitializedType.java39 class UninitializedType extends Type.DelegatedType { class in inherits:Type.DelegatedType
43 public static UninitializedType uninitializedThis(Type qtype) {
44 return new UninitializedType(UNINITIALIZED_THIS, qtype, -1);
47 public static UninitializedType uninitializedObject(Type qtype, int offset) {
48 return new UninitializedType(UNINITIALIZED_OBJECT, qtype, offset);
52 private UninitializedType(int tag, Type qtype, int offset) { method in class:UninitializedType

Completed in 29 milliseconds