Package net.sourceforge.aprog.events.AtomicVariable

Examples of net.sourceforge.aprog.events.AtomicVariable.ValueChangedEvent


  public static final void fireUpdate(final Context context, final String variableName) {
    final Object value = context.get(variableName);
    final AtomicVariable<Object> variable = cast(AtomicVariable.class, context.getVariable(variableName));
   
    if (variable != null) {
      variable.new ValueChangedEvent(value, value).fire();
    }
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.aprog.events.AtomicVariable.ValueChangedEvent

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.