KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > texteditor > SelectMarkerRulerInfoAction


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.texteditor;
12
13 import java.util.ResourceBundle JavaDoc;
14
15 import org.eclipse.jface.text.source.IVerticalRulerInfo;
16
17
18 /**
19  * @deprecated As of 2.1, replaced by {@link org.eclipse.ui.texteditor.SelectMarkerRulerAction}
20  * @since 2.0
21  */

22 public class SelectMarkerRulerInfoAction extends SelectMarkerRulerAction {
23
24     /**
25      * Creates a new action for the given ruler and editor. The action configures
26      * its visual representation from the given resource bundle.
27      *
28      * @param bundle the resource bundle
29      * @param prefix a prefix to be prepended to the various resource keys
30      * @param ruler the ruler
31      * @param editor the editor
32      * @deprecated As of 2.1 replaced by {@link org.eclipse.ui.texteditor.SelectMarkerRulerAction#SelectMarkerRulerAction(ResourceBundle, String, ITextEditor, IVerticalRulerInfo)}
33      */

34     public SelectMarkerRulerInfoAction(ResourceBundle JavaDoc bundle, String JavaDoc prefix, IVerticalRulerInfo ruler, ITextEditor editor) {
35         super(bundle, prefix, editor, ruler);
36     }
37 }
38
Popular Tags