1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[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 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;
20
21 /**
22  * Groups the JDT folding actions.
23  * 
24  * @since 3.0
25  */
26 public class FoldingExpandAllRulerAction extends AbstractRulerActionDelegate {
27
28         /*
29          * @see org.eclipse.ui.texteditor.AbstractRulerActionDelegate#createAction(org.eclipse.ui.texteditor.ITextEditor,
30          *      org.eclipse.jface.text.source.IVerticalRulerInfo)
31          */
32         protected IAction createAction(ITextEditor editor,
33                         IVerticalRulerInfo rulerInfo) {
34                 TextOperationAction action = new TextOperationAction(
35                                 ActionMessages.getResourceBundle(),
36                                 "Projection.ExpandAll.", editor, ProjectionViewer.EXPAND_ALL, true); //$NON-NLS-1$
37                 action.setActionDefinitionId(IFoldingCommandIds.FOLDING_EXPAND_ALL);
38                 return action;
39         }
40 }