Statistics
| Revision:

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

History | View | Annotate | Download (373 Bytes)

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

    
3
public class SLDAnchorPoint {
4
        
5
        protected String x = null;
6
        protected String y = null;
7
        
8
        public String getAnchorPointX() {
9
                return x;
10
        }
11
        public void setAnchorPointX(String x) {
12
                this.x = x;
13
        }
14
        public String getAnchorPointY() {
15
                return y;
16
        }
17
        public void setAnchorPointY(String y) {
18
                this.y = y;
19
        }
20

    
21
}