blob: 4e3f1b9f602e79383048276e8cf37679ca8dcdfc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Red Hat Inc. and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Alexander Kurtakov - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.sh.internal.ui.preferences;
import org.eclipse.core.resources.IProject;
import org.eclipse.dltk.sh.core.ShelledNature;
import org.eclipse.dltk.sh.internal.ui.Activator;
import org.eclipse.dltk.ui.preferences.AbstractConfigurationBlockPropertyAndPreferencePage;
import org.eclipse.dltk.ui.preferences.AbstractOptionsBlock;
import org.eclipse.dltk.ui.preferences.TodoTaskOptionsBlock;
import org.eclipse.dltk.ui.util.IStatusChangeListener;
import org.eclipse.ui.preferences.IWorkbenchPreferenceContainer;
public class ShellTodoTaskPreferencePage extends AbstractConfigurationBlockPropertyAndPreferencePage {
@Override
protected String getHelpId() {
return null;
}
@Override
protected void setDescription() {
setDescription("Strings indicating tasks in Shell Script comments.");
}
@Override
protected AbstractOptionsBlock createOptionsBlock(IStatusChangeListener newStatusChangedListener, IProject project,
IWorkbenchPreferenceContainer container) {
return new TodoTaskOptionsBlock(newStatusChangedListener, project, container, Activator.PLUGIN_ID);
}
@Override
protected String getNatureId() {
return ShelledNature.SHELLED_NATURE;
}
@Override
protected String getProjectHelpId() {
return null;
}
@Override
protected void setPreferenceStore() {
setPreferenceStore(Activator.getDefault().getPreferenceStore());
}
@Override
protected String getPreferencePageId() {
return "org.eclipse.dltk.sh.todo";
}
@Override
protected String getPropertyPageId() {
return "org.eclipse.dltk.sh.todo";
}
}