blob: d09bb7a4c8bd223130c9b716f396e1d5421b85a2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2016 xored software, 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:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.compiler.task;
import java.util.List;
import org.eclipse.core.runtime.Preferences;
/**
* Implementation of the {@link ITodoTaskPreferences} backed by
* {@link Preferences}
*/
public class TodoTaskPreferences extends AbstractTodoTaskPreferences implements
ITodoTaskPreferences {
private Preferences store;
public TodoTaskPreferences(Preferences store) {
this.store = store;
}
@Override
public boolean isEnabled() {
return store.getBoolean(ENABLED);
}
@Override
public boolean isCaseSensitive() {
return store.getBoolean(CASE_SENSITIVE);
}
@Override
protected String getRawTaskTags() {
return store.getString(TAGS);
}
/**
* @deprecated
*/
@Deprecated
public void setTaskTags(List<TodoTask> elements) {
store.setValue(TAGS, TaskTagUtils.encodeTaskTags(elements));
}
/**
* @deprecated use {@link TaskTagUtils#initializeDefaultValues(Preferences)}
*/
@Deprecated
public static void initializeDefaultValues(Preferences store) {
TaskTagUtils.initializeDefaultValues(store);
}
}