Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libAnimation / src / com / iver / cit / gvsig / animation / test / Animation3D.java @ 18655

History | View | Annotate | Download (1.51 KB)

1
package com.iver.cit.gvsig.animation.test;
2

    
3
import com.iver.cit.gvsig.animation.IAnimationType;
4
import com.iver.cit.gvsig.animation.keyframe.interpolator.IInterpolator;
5
import com.iver.utiles.XMLEntity;
6

    
7
public class Animation3D implements IAnimationType {
8

    
9
        private String className;
10
        private String Description;
11
        private String Name;
12
        private int typeTrack = IAnimationType.TIME_TYPE_TRACK;
13

    
14
        public String getClassName() {
15
                return className;
16
        }
17

    
18
        public String getDescription() {
19
                return Description;
20
        }
21

    
22
        public String getName() {
23
                return Name;
24
        }
25

    
26
        public void setClassName(String className) {
27
                this.className = className;
28
        }
29

    
30
        public void setDescription(String description) {
31
                Description = description;
32
        }
33

    
34
        public void setName(String name) {
35
                Name = name;
36
        }
37

    
38
        public void AppliesToObject(Object animated) {
39
                // TODO Auto-generated method stub
40
                
41
        }
42

    
43
        public int getTypeTrack() {
44
                return typeTrack;
45
        }
46

    
47
        public void setTypeTrack(int typeTrack) {
48
                this.typeTrack = typeTrack;
49
                
50
        }
51

    
52
        public Object getAnimatedObject() {
53
                // TODO Auto-generated method stub
54
                return null;
55
        }
56

    
57
        public void setAnimatedObject(Object object) {
58
                // TODO Auto-generated method stub
59
                
60
        }
61

    
62
        public XMLEntity getXMLEntity() {
63
                // TODO Auto-generated method stub
64
                return null;
65
        }
66

    
67
        public void setXMLEntity(XMLEntity arg0) {
68
                // TODO Auto-generated method stub
69
                
70
        }
71

    
72
        public void setInterpolator(IInterpolator interpolator) {
73
                // TODO Auto-generated method stub
74
                
75
        }
76

    
77
}