Community
Participate
Working Groups
Created attachment 210169 [details] Sample Project If a custom implementation of ProgressMonitor is passed, the class is searched for a method void init (String[]) When the method does not exist the code should safely skip invocation, but actually the code raises a NoSuchMethodException. 1 ERROR WorkflowRunner - metamodel.MyProgressMonitor.init([Ljava.lang.String;) java.lang.NoSuchMethodException: metamodel.MyProgressMonitor.init([Ljava.lang.String;) at java.lang.Class.getMethod(Class.java:1605) at org.eclipse.emf.mwe.core.WorkflowRunner.main(WorkflowRunner.java:205) Actually there should be an interface ProgressMonitor2 which adds this method.
moved to MWE
Added ProgressMonitor2 interface Changed WorkflowRunner