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

Examples of org.fusesource.ide.launcher.debug.model.variables.CamelDebuggerVariable


  private void initVariables() throws DebugException {
    BaseCamelVariable var = null;
    BaseCamelValue val = null;
   
    // DEBUGGER - CAMEL
    var = new CamelDebuggerVariable(this.debugTarget, VARIABLE_NAME_DEBUGGER, String.class);
    val = new CamelDebuggerValue(this.fTarget, this, var.getReferenceType());
    var.setValue(val);
    this.fVariables.add(var);
   
    // CURRENT ENDPOINT
View Full Code Here

TOP

Related Classes of org.fusesource.ide.launcher.debug.model.variables.CamelDebuggerVariable

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.