Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5625224bda2e0110e6e3cb271637aa77bea8af4f (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*******************************************************************************
 * Copyright (c) 2004, 2018 Tasktop Technologies and others.
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Tasktop Technologies - initial API and implementation
 *     Red Hat Inc - modified for use with OpenShift.io
 *******************************************************************************/

package org.eclipse.linuxtools.internal.mylyn.osio.rest.ui;

import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import org.eclipse.mylyn.commons.workbench.InPlaceCheckBoxTreeDialog;
import org.eclipse.mylyn.commons.workbench.WorkbenchUtil;
import org.eclipse.mylyn.internal.tasks.ui.editors.CheckboxMultiSelectAttributeEditor;
import org.eclipse.mylyn.tasks.core.data.TaskAttribute;
import org.eclipse.mylyn.tasks.core.data.TaskDataModel;
import org.eclipse.osgi.util.NLS;

/**
 * @author Rob Elves
 */
@SuppressWarnings("restriction")
public class OSIOKeywordAttributeEditor extends CheckboxMultiSelectAttributeEditor {

	public OSIOKeywordAttributeEditor(TaskDataModel manager, TaskAttribute taskAttribute) {
		super(manager, taskAttribute);
	}

	@Override
	public List<String> getValues() {
		List<String> values = new ArrayList<String>();
		values = getTaskAttribute().getValues();
		return values;
	}

	@Override
	public void setValues(List<String> newValues) {
		Collections.sort(newValues);
		getTaskAttribute().clearValues();
		getTaskAttribute().setValues(newValues);
		attributeChanged();
	}

	@Override
	protected List<String> getValueList() {
		return getValues();
	}

	@Override
	public List<String> getValuesLabels() {
		List<String> tmp = getTaskAttribute().getValues();
		List<String> newStrs = new ArrayList<>(tmp);
		return newStrs;
	}

	@Override
	protected InPlaceCheckBoxTreeDialog createInPlaceCheckBoxTreeDialog(List<String> values) {
		Map<String, String> validDescriptions = getTaskAttribute().getOptions();
		LinkedHashMap<String, String> validValues = new LinkedHashMap<String, String>(validDescriptions.size());
		for (String value : validDescriptions.keySet()) {
			validValues.put(value, value);
		}
		return new InPlaceCheckBoxTreeDialog(WorkbenchUtil.getShell(), getButton(), values, validValues,
				NLS.bind(Messages.OSIOKeywordAttributeEditor_Select_X, getLabel()), validDescriptions);
	}

}

Back to the top