Package org.eclipse.cdt.dsf.gdb.internal.ui.viewmodel.launch

Examples of org.eclipse.cdt.dsf.gdb.internal.ui.viewmodel.launch.LaunchVMProvider


    }
   
    @Override
    protected IVMProvider createViewModelProvider(IPresentationContext context) {
        if ( IDebugUIConstants.ID_DEBUG_VIEW.equals(context.getId()) ) {
            return new LaunchVMProvider(this, context, getSession());
        } else if (IDebugUIConstants.ID_VARIABLE_VIEW.equals(context.getId()) ) {
            return createGdbVariableProvider(context);
        } else if (IDebugUIConstants.ID_REGISTER_VIEW.equals(context.getId()) ) {
            return new RegisterVMProvider(this, context, getSession());
        } else if (IDebugUIConstants.ID_EXPRESSION_VIEW.equals(context.getId()) ) {
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.dsf.gdb.internal.ui.viewmodel.launch.LaunchVMProvider

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.