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;
15 import org.eclipse.jface.text.source.IVerticalRulerInfo;
16 import org.eclipse.jface.text.source.projection.ProjectionViewer;
18 import org.eclipse.ui.editors.text.IFoldingCommandIds;
19 import org.eclipse.ui.texteditor.AbstractRulerActionDelegate;
20 import org.eclipse.ui.texteditor.ITextEditor;
21 import org.eclipse.ui.texteditor.TextOperationAction;
25 * Groups the JDT folding actions.
29 public class FoldingExpandAllRulerAction extends AbstractRulerActionDelegate {
32 * @see org.eclipse.ui.texteditor.AbstractRulerActionDelegate#createAction(org.eclipse.ui.texteditor.ITextEditor, org.eclipse.jface.text.source.IVerticalRulerInfo)
34 protected IAction createAction(ITextEditor editor, IVerticalRulerInfo rulerInfo) {
35 TextOperationAction action= new TextOperationAction(ActionMessages.getResourceBundle(), "Projection.ExpandAll.", editor, ProjectionViewer.EXPAND_ALL, true); //$NON-NLS-1$
36 action.setActionDefinitionId(IFoldingCommandIds.FOLDING_EXPAND_ALL);