package FormEvents;

import com.evelopers.common.exception.CommonException;
import com.evelopers.unimod.runtime.EventProvider;
import com.evelopers.unimod.runtime.ModelEngine;

public class ButtonsEvents implements EventProvider {
  /**
   * @unimod.event.descr "Add bottom human" button is pressed
   */
  public static final String E011 = "e011";
  /**
   * @unimod.event.descr "Add top human" button is pressed
   */
  public static final String E012 = "e012";
  /**
   * @unimod.event.descr "Add left car" button is pressed
   */
  public static final String E021 = "e021";
  /**
   * @unimod.event.descr "Add right car" button is pressed
   */
  public static final String E022 = "e022";
  /**
   * @unimod.event.descr Humans can go
   */
  public static final String E03 = "e03";
  /**
   * @unimod.event.descr Humans should hurry up
   */
  public static final String E04 = "e04";
  /**
   * @unimod.event.descr Cars can drive
   */
  public static final String E05 = "e05";
  /**
   * @unimod.event.descr Cars should hurry up
   */
  public static final String E06 = "e06";
  /**
   * @unimod.event.descr Everyone stops
   */
  public static final String E07 = "e07";
  
  
  
  public static ModelEngine engine;
  public void init(ModelEngine enginethrows CommonException {
    ButtonsEvents.engine = engine;

  }

  public void dispose() {
    // TODO Auto-generated method stub

  }

}