A massive organize imports and formatting of the sources using default Eclipse code...
[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
20                 AbstractRulerActionDelegate {
21
22         /**
23          * @see AbstractRulerActionDelegate#createAction()
24          */
25         protected IAction createAction(ITextEditor editor,
26                         IVerticalRulerInfo rulerInfo) {
27                 return new PHPManageBreakpointRulerAction(rulerInfo, editor);
28         }
29 }