Package melnorme.lang.ide.debug.ui

Source Code of melnorme.lang.ide.debug.ui.DebugUI_Actual

package melnorme.lang.ide.debug.ui;

import melnorme.lang.ide.ui.LangUIPlugin;

import org.dsource.ddt.debug.ui.DeeToggleBreakpointAdapter;
import org.eclipse.cdt.debug.internal.ui.actions.breakpoints.ToggleDynamicPrintfAdapter;

public class DebugUI_Actual {
 
  public static final String LANG_BREAKPOINT_FACTORY_ID = LangUIPlugin.PLUGIN_ID + "BreakpointFactory";
 
  public static DeeToggleBreakpointAdapter createToggleBreakPointAdapter() {
    return new DeeToggleBreakpointAdapter();
  }
 
  public static ToggleDynamicPrintfAdapter createDynamicPrintfBreakpoint() {
    return new ToggleDynamicPrintfAdapter();
  }
 
}
TOP

Related Classes of melnorme.lang.ide.debug.ui.DebugUI_Actual

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.