blob: ae6d4f68f47fa12325cf74150ce79501f9ba978a [file] [log] [blame]
package org.eclipse.cdt.debug.internal.ui.actions;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.text.source.IVerticalRulerInfo;
import org.eclipse.ui.texteditor.AbstractRulerActionDelegate;
import org.eclipse.ui.texteditor.ITextEditor;
public class EnableDisableBreakpointRulerActionDelegate extends AbstractRulerActionDelegate
{
/**
* @see AbstractRulerActionDelegate#createAction(ITextEditor, IVerticalRulerInfo)
*/
protected IAction createAction( ITextEditor editor, IVerticalRulerInfo rulerInfo )
{
return new EnableDisableBreakpointRulerAction( editor, rulerInfo );
}
}