Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c02bbad66e72028d0d51c8b3cada3319f8664c8b (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*******************************************************************************
 * Copyright (c) 2000, 2004 IBM Corporation 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 API and implementation
 *******************************************************************************/
package org.eclipse.ui.editors.text;


/**
 * Command IDs for folding commands.
 * 
 * @since 3.0
 */
public interface IFoldingCommandIds {

	/**
	 * Identifier of the "collapse folded region" command.
	 * <p>
	 * Value: {@value}.</p>
	 */
	String FOLDING_COLLAPSE= "org.eclipse.ui.edit.text.folding.collapse"; //$NON-NLS-1$

	/**
	 * Identifier of the "expand folded region" command.
	 * <p>
	 * Value: {@value}.</p>
	 */
	String FOLDING_EXPAND= "org.eclipse.ui.edit.text.folding.expand"; //$NON-NLS-1$

	/**
	 * Identifier of the "expand all folded regions" command.
	 * <p>
	 * Value: {@value}.</p>
	 */
	String FOLDING_EXPAND_ALL= "org.eclipse.ui.edit.text.folding.expand_all"; //$NON-NLS-1$

	/**
	 * Identifier of the "toggle folding" command.
	 * <p>
	 * Value: {@value}.</p>
	 */
	String FOLDING_TOGGLE= "org.eclipse.ui.edit.text.folding.toggle"; //$NON-NLS-1$

}

Back to the top