Package fr.soleil.bossanova.model

Examples of fr.soleil.bossanova.model.StepType


  @Override
  public void setValueAt(Object value, int row, int column) {
    if (value != null) {
      super.setValueAt(value, row, column);
      String newStepName = (String) getValueAt(row, STEP_COLUMN);
      StepType stepType = RepositoryManager.getStepTypeFor(newStepName);
      switch (column) {
      case INDEX_COLUMN:
        break;
      case STEP_COLUMN:
        sequencer.modifyTypeAndNameForStepAt(row, newStepName, stepType);
View Full Code Here


    public static SequenceRepository getSequenceRepository() {
        return sequenceRepository;
    }

    public static StepType getStepTypeFor(String elementName) {
        StepType result = null;
        if (actorRepository.getActorClassForName(elementName) != null) {
            result = StepType.ACTOR;
        }
        if (sequenceRepository.getSequenceForName(elementName) != null) {
            result = StepType.SEQUENCE;
View Full Code Here

    public static SequenceRepository getSequenceRepository() {
        return sequenceRepository;
    }

    public static StepType getStepTypeFor(String elementName) {
        StepType result = null;
        if (actorRepository.getActorClassForName(elementName) != null) {
            result = StepType.ACTOR;
        }
        if (sequenceRepository.getSequenceForName(elementName) != null) {
            result = StepType.SEQUENCE;
View Full Code Here

TOP

Related Classes of fr.soleil.bossanova.model.StepType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.