but if I code like this:
package com.app.HANDLERS;
import org.jbpm.graph.def.ActionHandler;
import org.jbpm.graph.exe.ExecutionContext;
public class State1Handler implements ActionHandler {
@Override
public void execute(ExecutionContext arg0) throws Exception {
new MyClass().printHelloWorld();
}
}
I have error like in my first post