Package limelight.model

Examples of limelight.model.Theater$ActivateStageAction


    }
  }

  private Stage establishStage(String stageName, Map<String, Object> stageOptions)
  {
    final Theater theater = production.getTheater();
    Stage stage = theater.get(stageName);
    if(stage == null)
    {
      stage = theater.getProxy().buildStage(stageName, new HashMap<String, Object>(stageOptions));
      theater.add(stage);
    }
    return stage;
  }
View Full Code Here

TOP

Related Classes of limelight.model.Theater$ActivateStageAction

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.