blob: 09bd5793d5199585f9257fe18fd4c184c95894a3 [file] [log] [blame]
package org.eclipse.ui.internal.views.markers;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.ui.views.markers.MarkerViewHandler;
import org.eclipse.ui.views.markers.internal.DialogTaskProperties;
import org.eclipse.ui.views.markers.internal.MarkerMessages;
/**
* AddTaskHandler is the handler for adding a new task to the task list.
*
* @since 3.4
*
*/
public class AddTaskHandler extends MarkerViewHandler {
/*
* (non-Javadoc)
*
* @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
*/
public Object execute(ExecutionEvent event) {
final ExtendedMarkersView view = getView(event);
if (view == null)
return this;
DialogTaskProperties dialog = new DialogTaskProperties(view.getSite()
.getShell(), MarkerMessages.addGlobalTaskDialog_title);
dialog.open();
return this;
}
}