Statistics
| Revision:

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

History | View | Annotate | Download (1.46 KB)

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

    
3
import java.util.ArrayList;
4
import java.util.List;
5

    
6
import org.gvsig.sldsupport.sld.rule.SLDRule;
7

    
8
public class SLDFeatureStyle {
9
        
10
        protected String name = null;
11
        
12
        /*
13
         * SLD 1.0.0
14
         */
15
        protected String title = null;
16
        /*
17
         * Called abstract in SLD 1.0.0
18
         */
19
        protected String description = null;
20
        protected String featureTypeName = null;
21
        protected String semanticTypeIdentifier = null;
22
        protected String version = null;
23
        protected List<SLDRule> rules = new ArrayList<SLDRule>();
24

    
25
        public SLDFeatureStyle() {
26
        }
27
        
28
        public List<SLDRule> getRules() {
29
                return rules;
30
        }
31
        
32
        // ===========================
33
        
34
        public String getDescription() {
35
                return description;
36
        }
37

    
38
        public void setDescription(String d) {
39
                this.description = d;
40
        }
41

    
42
        public String getFeatureTypeName() {
43
                return featureTypeName;
44
        }
45

    
46
        public void setFeatureTypeName(String ftn) {
47
                this.featureTypeName = ftn;
48
        }
49

    
50
        public String getSemanticTypeIdentifier() {
51
                return semanticTypeIdentifier;
52
        }
53

    
54
        public void setSemanticTypeIdentifier(String sti) {
55
                this.semanticTypeIdentifier = sti;
56
        }
57

    
58
        public String getName() {
59
                return name;
60
        }
61

    
62
        public String getVersion() {
63
                return version;
64
        }
65
        
66
        public void setName(String n) {
67
                name = n;
68
        }
69

    
70
        public void setVersion(String v) {
71
                version = v;
72
        }
73

    
74
        public String getTitle() {
75
                return title;
76
        }
77

    
78
        public void setTitle(String t) {
79
                this.title = t;
80
        }        
81
        
82

    
83
}