KickJava   Java API By Example, From Geeks To Geeks.

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


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 import org.eclipse.jface.text.source.IVerticalRulerInfo;
15
16
17 /**
18  * @deprecated use {@link org.eclipse.ui.texteditor.MarkerRulerAction} instead
19  * @since 2.0
20  */

21 public class MarkerRulerInfoAction extends MarkerRulerAction {
22
23     /**
24      * Creates a new action for the given ruler and editor. The action configures
25      * its visual representation from the given resource bundle.
26      *
27      * @param bundle the resource bundle
28      * @param prefix a prefix to be prepended to the various resource keys
29      * @param ruler the ruler
30      * @param editor the editor
31      * @param markerType the type of marker
32      * @param askForLabel <code>true</code> if the user should be asked for a label when a new marker is created
33      * @deprecated use super class constructor instead
34      */

35     public MarkerRulerInfoAction(ResourceBundle JavaDoc bundle, String JavaDoc prefix, IVerticalRulerInfo ruler, ITextEditor editor, String JavaDoc markerType, boolean askForLabel) {
36         super(bundle, prefix, editor, ruler, markerType, askForLabel);
37     }
38 }
39
Popular Tags