Package com.subgraph.vega.api.model.scope

Examples of com.subgraph.vega.api.model.scope.ActiveScopeChangedEvent


    return getName();
  }
 
  private void notifyIfActiveScope() {
    if(isActiveScope) {
      scopeChangedListeners.fireEvent(new ActiveScopeChangedEvent(this));
    }
  }
View Full Code Here


    synchronized (this) {
      ((TargetScope)activeScope).setIsActiveScope(false);
      ((TargetScope)scope).setIsActiveScope(true);
      activeScope = scope;
     
      scopeChangeListeners.fireEvent(new ActiveScopeChangedEvent(activeScope));
    }
  }
View Full Code Here

TOP

Related Classes of com.subgraph.vega.api.model.scope.ActiveScopeChangedEvent

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.