blob: 828dd59825ebbed0a943290c2f3a7ba52e22698e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.views.markers.internal;
import org.eclipse.jface.preference.BooleanPropertyAction;
import org.eclipse.ui.internal.ide.IDEWorkbenchPlugin;
import org.eclipse.ui.internal.ide.IDEInternalPreferences;
public class ActionShowOnBuild extends BooleanPropertyAction {
public ActionShowOnBuild() {
super(Messages.getString("showAction.title"), IDEWorkbenchPlugin.getDefault().getPreferenceStore(), IDEInternalPreferences.SHOW_TASKS_ON_BUILD); //$NON-NLS-1$
}
}