Statistics
| Revision:

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

History | View | Annotate | Download (652 Bytes)

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

    
3
import java.util.List;
4

    
5
import org.gvsig.sldsupport.sld.filter.expression.SLDExpression;
6

    
7
public interface SLDGraphic {
8
        
9
        /**
10
         * Order matters, we use utility interface SLDGraphicStackElement 
11
         * This list is made of SLDMark and SLDExternalGraphic
12
         * 
13
         * @return
14
         */
15
        public List<SLDGraphicStackElement> getElementStack();
16
        
17
        
18
        public SLDExpression getOpacity();
19
        public SLDExpression getSize();
20
        public SLDExpression getRotation();
21
        
22
        public double getAnchorPointX();
23
        public double getAnchorPointY();
24
        public double getDisplacementX();
25
        public double getDisplacementY();
26

    
27
}