Package org.fusesource.ide.launcher.debug.model.variables

Examples of org.fusesource.ide.launcher.debug.model.variables.BaseCamelVariable.markChanged()


        if (newVar.getName().equals(oldVar.getName())) {
          IValue oldValue = oldVar.getValue();
          IValue newValue = newVar.getValue();
          // first check only values
          if (!oldValue.getValueString().equals(newValue.getValueString())) {
            newVar.markChanged();
          }
          // also check for changed nested variables
          if (newValue.hasVariables() && oldValue.hasVariables()) {
            updateChangedFields(oldValue.getVariables(), newValue.getVariables());
          }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.