Statistics
| Revision:

svn-gvsig-desktop / tags / 3D_Animation_v1_0alpha_Build_5 / libraries / lib3DMap / src / org / gvsig / gvsig3d / labels3D / SimpleLabel3D.java @ 25534

History | View | Annotate | Download (748 Bytes)

1
package org.gvsig.gvsig3d.labels3D;
2

    
3
import com.iver.cit.gvsig.fmap.core.v02.FLabel;
4
import com.iver.cit.gvsig.fmap.rendering.styling.labeling.AttrInTableLabelingStrategy;
5

    
6
public class SimpleLabel3D extends AbstractLabel3D {
7
        
8
        private AttrInTableLabelingStrategy strategy;
9

    
10
        public SimpleLabel3D(FLabel label, double heigthField, String textField) {
11
                super(label, heigthField, textField);
12
                // TODO Auto-generated constructor stub
13
        }
14

    
15
        public SimpleLabel3D(FLabel label) {
16
                super(label);
17
                // TODO Auto-generated constructor stub
18
        }
19

    
20
        public AttrInTableLabelingStrategy getStrategy() {
21
                return strategy;
22
        }
23

    
24
        public void setStrategy(AttrInTableLabelingStrategy strategy) {
25
                this.strategy = strategy;
26
        }
27
        
28
        
29

    
30

    
31
}