I have a java class (named A) that needs to be executed by groovy. This class is standalone. I want to dynamically extend it with the class B.
The code for class A:
public class A {
public void run() {
System.out.println(context);
}
}
The code for class B:
public class B {
protected String context;
public void setContext(Context c) {
this.context = c;
}
}
The code controlling groovy:
String code = FileUtils.readFileAsString(new File("A.java"));
GroovyObject obj = new GroovyClassLoader().parseClass(code).newInstance();
// here I want to make A extend B
I tried to use obj.setMetaClass but I don't find any example in Java.
Can someone has already done this ?