First submit for debug plugin
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.ui / src / net / sourceforge / phpdt / internal / debug / ui / actions / PHPManageBreakpointRulerActionDelegate.java
1 /**********************************************************************
2 Copyright (c) 2000, 2002 IBM Corp. and others.
3 All rights reserved. This program and the accompanying materials
4 are made available under the terms of the Common Public License v1.0
5 which accompanies this distribution, and is available at
6 http://www.eclipse.org/legal/cpl-v10.html
7
8 Contributors:
9     IBM Corporation - Initial implementation
10     Vicente Fernando - www.alfersoft.com.ar
11 **********************************************************************/
12 package net.sourceforge.phpdt.internal.debug.ui.actions;
13
14 import org.eclipse.jface.action.IAction;
15 import org.eclipse.jface.text.source.IVerticalRulerInfo;
16 import org.eclipse.ui.texteditor.AbstractRulerActionDelegate;
17 import org.eclipse.ui.texteditor.ITextEditor;
18
19 public class PHPManageBreakpointRulerActionDelegate extends AbstractRulerActionDelegate {
20
21         /**
22          * @see AbstractRulerActionDelegate#createAction()
23          */
24         protected IAction createAction(ITextEditor editor, IVerticalRulerInfo rulerInfo) {
25                 return new PHPManageBreakpointRulerAction(rulerInfo, editor);
26         }
27 }