Skip to main content
summaryrefslogtreecommitdiffstats
blob: 26eb9a86e445b3802e1e6ccc76a00a370d4c00a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html

Contributors:
    IBM Corporation - Initial implementation
**********************************************************************/


package org.eclipse.ui.texteditor;


import java.util.ResourceBundle;
import org.eclipse.jface.text.source.IVerticalRulerInfo;


/**
 * @deprecated use <code>SelectMarkerRulerAction</code> instead
 * @since 2.0
 */
public class SelectMarkerRulerInfoAction extends SelectMarkerRulerAction {

	/**
	 * @deprecated use super class instead
	 */
	public SelectMarkerRulerInfoAction(ResourceBundle bundle, String prefix, IVerticalRulerInfo ruler, ITextEditor editor) {
		super(bundle, prefix, editor, ruler);
	}
}

Back to the top