/** * <copyright> * </copyright> * * */ package robot.resource.robot.debug; public abstract class RobotDebugElement extends org.eclipse.debug.core.model.DebugElement { /** * Constructs a new debug element in the given target. */ public RobotDebugElement(org.eclipse.debug.core.model.IDebugTarget target) { super(target); } public String getModelIdentifier() { return robot.resource.robot.mopp.RobotPlugin.DEBUG_MODEL_ID; } /** * Returns the breakpoint manager. * * @return the breakpoint manager */ protected org.eclipse.debug.core.IBreakpointManager getBreakpointManager() { return org.eclipse.debug.core.DebugPlugin.getDefault().getBreakpointManager(); } }