3m9 compatible;
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / actions / FoldingExpandAllRulerAction.java
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
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.actions;
12
13 import org.eclipse.jface.action.IAction;
14
15 import org.eclipse.jface.text.source.IVerticalRulerInfo;
16 import org.eclipse.jface.text.source.projection.ProjectionViewer;
17
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;
22
23
24 /**
25  * Groups the JDT folding actions.
26  *  
27  * @since 3.0
28  */
29 public class FoldingExpandAllRulerAction extends AbstractRulerActionDelegate {
30
31         /*
32          * @see org.eclipse.ui.texteditor.AbstractRulerActionDelegate#createAction(org.eclipse.ui.texteditor.ITextEditor, org.eclipse.jface.text.source.IVerticalRulerInfo)
33          */
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);
37                 return action;
38         }
39 }