blob: 602ecd91759f11185fae11549aada7dc1bcb7474 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.views.markers;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.IHandler;
import org.eclipse.jface.util.ConfigureColumns;
import org.eclipse.ui.views.markers.MarkerViewHandler;
/**
* The ConfigureContentsDialogHandler is the handler for opening the contents
* configuration dialog
*
* @since 3.4
*
*/
public class ConfigureColumnsHandler extends MarkerViewHandler implements IHandler {
/*
* (non-Javadoc)
*
* @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
*/
public Object execute(ExecutionEvent event) {
ExtendedMarkersView view = getView(event);
if (view == null)
return this;
ConfigureColumns.forTree(view.getViewer().getTree(), view.getSite());
return this;
}
}