Browse Source

Ensure version information get/settable

tags/V1_9_0_RC3
Andy Clement 6 years ago
parent
commit
069a891403
1 changed files with 13 additions and 0 deletions
  1. 13
    0
      weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java

+ 13
- 0
weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java View File

@@ -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…
Cancel
Save