Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / ISLDCompatible.java @ 38563

History | View | Annotate | Download (323 Bytes)

1
package com.iver.cit.gvsig.fmap.core;
2

    
3
/**
4
 * Interface that represents the objects able to be converted or imported from SLD
5
 * SLD: Sytled Layer Descriptor v1.0.0(OpenGIS Implementation Specification)
6
 * @author laura
7
 */
8
public interface ISLDCompatible {
9

    
10
        public String toSLD();
11
        public String fromSLD(String sld);
12
        
13
}