/******************************************************************************* * Copyright (c) 2007, 2011 David Green and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * David Green - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.internal.wikitext.ui.editor.actions; import org.eclipse.jface.action.IAction; import org.eclipse.jface.text.source.IVerticalRulerInfo; import org.eclipse.jface.text.source.projection.ProjectionViewer; import org.eclipse.mylyn.internal.wikitext.ui.util.NlsResourceBundle; import org.eclipse.ui.editors.text.IFoldingCommandIds; import org.eclipse.ui.texteditor.AbstractRulerActionDelegate; import org.eclipse.ui.texteditor.ITextEditor; import org.eclipse.ui.texteditor.TextOperationAction; /** * @author David Green */ public class ExpandAllFoldingRulerAction extends AbstractRulerActionDelegate { @Override protected IAction createAction(ITextEditor editor, IVerticalRulerInfo rulerInfo) { TextOperationAction action = new TextOperationAction(new NlsResourceBundle(Messages.class), "ExpandAllFoldingRulerAction_", editor, ProjectionViewer.EXPAND_ALL, true); //$NON-NLS-1$ action.setActionDefinitionId(IFoldingCommandIds.FOLDING_EXPAND_ALL); return action; } }