Esempio n. 1
0
  public void close() {
    log.trace("closing " + this);

    EnvironmentImpl popped = EnvironmentImpl.popEnvironment();
    if (this != popped) {
      throw new JbpmException("environment nesting problem");
    }
  }
Esempio n. 2
0
 private void addEnv(EnvironmentImpl mixin) {
   environments.put(mixin.getClass(), mixin);
 }