Search in sources :

Example 1 with Theater

use of limelight.model.Theater in project limelight by slagyr.

the class Utilities method establishStage.

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;
}
Also used : Theater(limelight.model.Theater) HashMap(java.util.HashMap) Stage(limelight.model.Stage)

Aggregations

HashMap (java.util.HashMap)1 Stage (limelight.model.Stage)1 Theater (limelight.model.Theater)1