Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extPublish / src / org / gvsig / remoteservices / conf / IRSLayer.java @ 7136

History | View | Annotate | Download (300 Bytes)

1
package org.gvsig.remoteservices.conf;
2

    
3
/**
4
 * Interface for Remote Service's Layers
5
 * 
6
 * @author "Luis W. Sevilla" <sevilla_lui@gva.es>
7
 */
8
public interface IRSLayer {
9
        public String getName();
10
        public void setName(String name);
11
        
12
        public String getTitle();
13
        public void setTitle(String title);
14
}