Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / org.gvsig.installer / org.gvsig.installer.lib / org.gvsig.installer.lib.api / src / main / java / org / gvsig / installer / lib / api / Version.java @ 37599

History | View | Annotate | Download (419 Bytes)

1
package org.gvsig.installer.lib.api;
2

    
3
import org.gvsig.tools.lang.Cloneable;
4

    
5
public interface Version extends Cloneable {
6

    
7
        public Version parse(String version);
8

    
9
        public int getMayor();
10

    
11
        public int getMinor();
12

    
13
        public int getRevision();
14

    
15
        public String getClassifier();
16

    
17
        public int getBuild();
18

    
19
        public boolean check(String op, Version other);
20

    
21
        public String fullFormat();
22

    
23
        public Version setBuild(int build);
24
}