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

changeset 167
3f30adba1c63
parent 134
f47e82cd6077
child 178
88207b860cba
     1.1 --- a/src/main/java/de/uapcore/lightpit/viewmodel/ProjectView.java	Sun Dec 20 11:06:25 2020 +0100
     1.2 +++ b/src/main/java/de/uapcore/lightpit/viewmodel/ProjectView.java	Mon Dec 21 18:29:34 2020 +0100
     1.3 @@ -12,10 +12,12 @@
     1.4      public static final int SELECTED_PAGE_VERSIONS = 1;
     1.5      public static final int SELECTED_PAGE_COMPONENTS = 2;
     1.6  
     1.7 -    public static final Version ALL_VERSIONS = new Version(0);
     1.8 -    public static final Version NO_VERSION = new Version(-1);
     1.9 -    public static final Component ALL_COMPONENTS = new Component(0);
    1.10 -    public static final Component NO_COMPONENT = new Component(-1);
    1.11 +    // TODO: use new Filter class
    1.12 +
    1.13 +    public static final Version ALL_VERSIONS = new Version(0,0);
    1.14 +    public static final Version NO_VERSION = new Version(-1,0);
    1.15 +    public static final Component ALL_COMPONENTS = new Component(0,0);
    1.16 +    public static final Component NO_COMPONENT = new Component(-1,0);
    1.17  
    1.18      static {
    1.19          ALL_VERSIONS.setNode("all-versions");

mercurial