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

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


    try {
      this.debugTarget.getDebugger().setMessageHeaderOnBreakpoint(this.debugTarget.getSuspendedNodeId(), key, value);
      CamelHeaderVariable newVar = new CamelHeaderVariable(debugTarget, key, String.class, parent);
      CamelHeaderValue newVal = new CamelHeaderValue(debugTarget, new Header(key, value, String.class.getName()), String.class);
      newVar.setValue(newVal);
      newVar.markChanged();
      this.fVariables.add(newVar);
    } catch (DebugException ex) {
      Activator.getLogger().error(ex);
    } finally {
      fireCreationEvent();
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.