Statistics
| Revision:

gvsig-webmap / org.gvsig.webmap / trunk / org.gvsig.webmap / org.gvsig.webmap.lib / org.gvsig.webmap.lib.api / src / main / java / org / gvsig / webmap / lib / api / AbstractWebMapServiceFactory.java @ 108

History | View | Annotate | Download (342 Bytes)

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

    
3

    
4
public abstract class AbstractWebMapServiceFactory implements WebMapServiceFactory{
5

    
6
    @Override
7
    public int compareTo(WebMapServiceFactory other) {
8
        return Integer.compare(other.getPriority(), this.getPriority());
9
    }
10

    
11
    @Override
12
    public int getPriority() {
13
        return 0;
14
    }
15

    
16
}