Statistics
| Revision:

root / branches / CqCMSDvp / libraries / libCq CMS for java.old / src / org / cresques / ui / CQLayerManager.java @ 1764

History | View | Annotate | Download (413 Bytes)

1
/*
2
 * Created on 24-mar-2005
3
 */
4
package org.cresques.ui;
5

    
6
import org.cresques.cts.IProjection;
7
import org.cresques.px.PxLayer;
8

    
9
/**
10
 * @author Luis W. Sevilla (sevilla_lui@gva.es)
11
 */
12
public interface CQLayerManager {
13
        public PxLayer createLayer(IProjection proj);
14
        
15
        public PxLayer createLayer(String name, IProjection proj);
16
        
17
        public PxLayer createLayer(PxLayer layer);
18
        
19
        public PxLayer getCurrentLayer();
20
}