src/main/java/de/uapcore/lightpit/viewmodel/ProjectView.java

changeset 167
3f30adba1c63
parent 134
f47e82cd6077
child 178
88207b860cba
equal deleted inserted replaced
166:6eede6088d41 167:3f30adba1c63
10 10
11 public static final int SELECTED_PAGE_ISSUES = 0; 11 public static final int SELECTED_PAGE_ISSUES = 0;
12 public static final int SELECTED_PAGE_VERSIONS = 1; 12 public static final int SELECTED_PAGE_VERSIONS = 1;
13 public static final int SELECTED_PAGE_COMPONENTS = 2; 13 public static final int SELECTED_PAGE_COMPONENTS = 2;
14 14
15 public static final Version ALL_VERSIONS = new Version(0); 15 // TODO: use new Filter class
16 public static final Version NO_VERSION = new Version(-1); 16
17 public static final Component ALL_COMPONENTS = new Component(0); 17 public static final Version ALL_VERSIONS = new Version(0,0);
18 public static final Component NO_COMPONENT = new Component(-1); 18 public static final Version NO_VERSION = new Version(-1,0);
19 public static final Component ALL_COMPONENTS = new Component(0,0);
20 public static final Component NO_COMPONENT = new Component(-1,0);
19 21
20 static { 22 static {
21 ALL_VERSIONS.setNode("all-versions"); 23 ALL_VERSIONS.setNode("all-versions");
22 NO_VERSION.setNode("no-version"); 24 NO_VERSION.setNode("no-version");
23 ALL_COMPONENTS.setNode("all-components"); 25 ALL_COMPONENTS.setNode("all-components");

mercurial