Kaynağa Gözat

Ensure version information get/settable

tags/V1_9_0_RC3
Andy Clement 6 yıl önce
ebeveyn
işleme
069a891403

+ 13
- 0
weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java Dosyayı Görüntüle

@@ -253,6 +253,19 @@ public final class LazyClassGen {
regenerateGenericSignatureAttribute = true;
this.world = world;
}
public void setMajorMinor(int major, int minor) {
myGen.setMajor(major);
myGen.setMinor(minor);
}
public int getMajor() {
return myGen.getMajor();
}
public int getMinor() {
return myGen.getMinor();
}

// Non child type, so it comes from a real type in the world.
public LazyClassGen(BcelObjectType myType) {

Loading…
İptal
Kaydet