I'm trying to write a MWE2 workflow component using scala language.
Below is the scala code:

package com.ford.modelling.workflow

import org.eclipse.emf.mwe2.runtime.workflow.{IWorkflowComponent, IWorkflowContext}

class SayHello extends IWorkflowComponent {
  var message : String = null;

  def preInvoke {}
  def invoke(ctx : IWorkflowContext) { System.out.println(message) } 
  def postInvoke {}
}

and below is the workflow code:

module com.ford.modelling.workflow.SomeWorklow

SayHello {}

I can't figure out why does this workflow complain for error:

'com.ford.modelling.workflow.SayHello' does not have a public default constructor.
link|improve this question
feedback

1 Answer

I'd assume that the scala IDE plugin does not mimic the java protocol completely, e.g. the IType does not expose a no-args constructor. You may want to ask the scale folks about it.

The error message should vanish as soon as you add a default constructor explicitly. Does that make sense?

A quick google search indicated that there probably no syntax for a default constructor so I'd assume it's a scala tooling problem. Does the problem occur at runtime, too?

link|improve this answer
hoe can I add the constructor explicitly? I don't know the syntax. – Aykut K. Nov 10 '11 at 21:44
it works but the editor is still complaining about it. – Aykut K. Nov 12 '11 at 19:23
There is nothing in the problems list but it is underlined in the editor. – Aykut K. Nov 26 '11 at 12:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.