Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3f5212ebc1d32d086a4f3af629979b0c070599a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.eclipse.ui.internal.views.markers;
/*******************************************************************************
 * Copyright (c) 2007, 2015 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
 *******************************************************************************/

import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.IHandler;
import org.eclipse.ui.views.markers.MarkerViewHandler;

/**
 * MarkerSelectAllHandler is the handler for the select all action.
 * @since 3.4
 *
 */
public class MarkerSelectAllHandler extends MarkerViewHandler implements
		IHandler {

	@Override
	public Object execute(ExecutionEvent event)  {
		ExtendedMarkersView view = getView(event);
		if(view != null)
			view.selectAll();
		return this;
	}

}

Back to the top