1
2
3
4
5
6 package com.atlassian.jira.portal;
7
8 import java.util.Map;
9
10 import org.apache.commons.collections.map.LinkedMap;
11
12 import com.atlassian.configurable.ValuesGenerator;
13 import com.atlassian.jira.web.bean.I18nBean;
14
15
16
17
18
19
20
21 public class ProjectsValuesGenerator extends ProjectValuesGenerator implements ValuesGenerator {
22
23
24
25 public Map getValues(Map params) {
26 Map result = new LinkedMap();
27 I18nBean i18nBean = new I18nBean();
28
29 result.put(null, i18nBean.getText("portlet.projects.display.name.all"));
30 result.putAll(super.getValues(params));
31
32 return result;
33 }
34
35 }