00001 00003 package org.best.of.robotics.smachDSL; 00004 00005 import org.eclipse.emf.common.util.EList; 00006 00007 import org.eclipse.emf.ecore.EObject; 00008 00027 public interface ActionState extends EObject 00028 { 00043 String getName(); 00044 00053 void setName(String value); 00054 00069 ActionClient getClientname(); 00070 00079 void setClientname(ActionClient value); 00080 00095 EList<Transition> getTransitions(); 00096 00097 } // ActionState