143144145146147148149150151
public StringList getNames() { /** * Register with the following names for the datamodel attribute at the * scxml element. <scxml datamodel="one of these"> */ StringList ss = new StringList(); ss.add("ecmascript"); return ss; }
252627282930313233
/** * The types we will handle on a <send> element */ @Override public StringList getNames() { StringList ss = new StringList(); ss.add("java"); return ss; }
181920212223242526
} /** IOProcessor */ @Override public StringList getNames() { StringList ss = new StringList(); ss.add("console"); return ss; }
121314151617181920
public class TestCustomInvoker extends Invoker { @Override public StringList getNames() { StringList ss = new StringList(); ss.add("java"); return ss; }
111213141516171819
public class TestAdhocInvoker extends Invoker { @Override public StringList getNames() { StringList ss = new StringList(); ss.add("java"); return ss; }