Statistics
| Revision:

gvsig-raster / org.gvsig.raster.wmts / trunk / org.gvsig.raster.wmts / org.gvsig.raster.wmts.ogc / org.gvsig.raster.wmts.ogc.api / src / main / java / org / gvsig / raster / wmts / ogc / WMTSOGCLibrary.java @ 1806

History | View | Annotate | Download (811 Bytes)

1
package org.gvsig.raster.wmts.ogc;
2

    
3
import org.gvsig.tools.library.AbstractLibrary;
4
import org.gvsig.tools.library.LibraryException;
5
import org.gvsig.tools.locator.ReferenceNotRegisteredException;
6

    
7

    
8
/**
9
 * 
10
 * @author Nacho Brodin (nachobrodin@gmail.com)
11
 */
12
public class WMTSOGCLibrary extends AbstractLibrary {
13
        
14
        public WMTSOGCLibrary() {
15
        registerAsAPI(WMTSOGCLibrary.class);
16
        }
17
        
18
        @Override
19
    protected void doInitialize() throws LibraryException {
20
    }
21

    
22
    @Override
23
    protected void doPostInitialize() throws LibraryException {
24
        WMTSOGCManager manager = WMTSOGCLocator.getManager();
25
        if (manager == null) {
26
            throw new ReferenceNotRegisteredException(
27
                WMTSOGCLocator.MANAGER_NAME, WMTSOGCLocator
28
                    .getInstance());
29
        }
30
    }
31
}