Interface.java 283 B

12345678910111213
  1. package org.yakindu.sct.runtime.java.custom;
  2. import java.util.Collection;
  3. import org.yakindu.sct.runtime.java.custom.ExampleAbstractBaseStatemachine.Events;
  4. public interface Interface {
  5. public Collection<Events> getOutEvents();
  6. public Collection<Events> getOccuredEvents();
  7. }