Package com.subgraph.vega.api.model.conditions

Examples of com.subgraph.vega.api.model.conditions.ConditionSetChanged


    return types;
  }
 
  public void notifyClosed() {
    synchronized(conditionSetChangedManager) {
      conditionSetChangedManager.fireAllKeys(new ConditionSetChanged(null));
    }
  }
View Full Code Here


 
  private void notifyAllChanged() {
    synchronized(conditionSetChangedManager) {
      for(String conditionSetName: conditionSetChangedManager.getAllKeys()) {
        IHttpConditionSet conditionSet = getConditionSet(conditionSetName);
        conditionSetChangedManager.fireEvent(conditionSetName, new ConditionSetChanged(conditionSet));
      }
    }
  }
View Full Code Here

      }
    }
  }

  void notifyConditionSetChanged(IHttpConditionSet conditionSet) {
    conditionSetChangedManager.fireEvent(conditionSet.getName(), new ConditionSetChanged(conditionSet));
  }
View Full Code Here

  @Override
  public void saveConditionSet(String name, IHttpConditionSet conditionSet) {
    synchronized(conditionSetChangedManager) {
      getConditionSetMap().saveConditionSet(name, conditionSet);
      conditionSetChangedManager.fireEvent(name, new ConditionSetChanged(conditionSet));
    }
  }
View Full Code Here

TOP

Related Classes of com.subgraph.vega.api.model.conditions.ConditionSetChanged

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.