1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.actions;
13 import org.eclipse.jface.action.IAction;
14 import org.eclipse.jface.text.source.IVerticalRulerInfo;
15 import org.eclipse.jface.text.source.projection.ProjectionViewer;
16 import org.eclipse.ui.editors.text.IFoldingCommandIds;
17 import org.eclipse.ui.texteditor.AbstractRulerActionDelegate;
18 import org.eclipse.ui.texteditor.ITextEditor;
19 import org.eclipse.ui.texteditor.TextOperationAction;
23 * Groups the JDT folding actions.
27 public class FoldingExpandAllRulerAction extends AbstractRulerActionDelegate {
30 * @see org.eclipse.ui.texteditor.AbstractRulerActionDelegate#createAction(org.eclipse.ui.texteditor.ITextEditor, org.eclipse.jface.text.source.IVerticalRulerInfo)
32 protected IAction createAction(ITextEditor editor, IVerticalRulerInfo rulerInfo) {
33 TextOperationAction action= new TextOperationAction(ActionMessages.getResourceBundle(), "Projection.ExpandAll.", editor, ProjectionViewer.EXPAND_ALL, true); //$NON-NLS-1$
34 action.setActionDefinitionId(IFoldingCommandIds.FOLDING_EXPAND_ALL);