Statistics
| Revision:

svn-gvsig-desktop / branches / v02_desarrollo / libraries / sld / temp / org.gvsig.sldsupport.lib.api / src / main / java / org / gvsig / sldsupport / sld / graphic / SLDDisplacement.java @ 40789

History | View | Annotate | Download (378 Bytes)

1
package org.gvsig.sldsupport.sld.graphic;
2

    
3
public class SLDDisplacement {
4
        
5
        protected String x = null;
6
        protected String y = null;
7
        
8
        public String getDisplacementX() {
9
                return x;
10
        }
11
        public void setDisplacementX(String x) {
12
                this.x = x;
13
        }
14
        public String getDisplacementY() {
15
                return y;
16
        }
17
        public void setDisplacementY(String y) {
18
                this.y = y;
19
        }
20

    
21
}