blob: 51b72f8e5f222c55f5e2de67544284c2b0c376bb [file] [log] [blame]
/*******************************************************************************
* 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$
}