Statistics
| Revision:

gvsig-3d / 2.1 / trunk / org.gvsig.view3d / org.gvsig.view3d.swing / org.gvsig.view3d.swing.api / src / main / java / org / gvsig / view3d / swing / api / properties / GeneralProperties3DPanel.java @ 533

History | View | Annotate | Download (1.32 KB)

1
package org.gvsig.view3d.swing.api.properties;
2

    
3
import org.gvsig.tools.swing.api.Component;
4

    
5
/**
6
 * This class represents the available API to get the indicated values at panel.
7
 * 
8
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
9
 *
10
 */
11
public interface GeneralProperties3DPanel extends Component {
12

    
13
    /**
14
     * Gets atmospehere visibility.
15
     * 
16
     * @return
17
     */
18
    public boolean getAtmosphereVisibility();
19

    
20
    /**
21
     * Gets cache path indicated.
22
     * 
23
     * @return
24
     */
25
    public String getCachePath();
26

    
27
    /**
28
     * Gets default height.
29
     * 
30
     * @return
31
     */
32
    public int getDefaultHeight();
33

    
34
    /**
35
     * Gets default width.
36
     * 
37
     * @return
38
     */
39
    public int getDefaultWidth();
40

    
41
    /**
42
     * Get minimap visibility.
43
     * 
44
     * @return
45
     */
46
    public boolean getMinimapVisibility();
47

    
48
    /**
49
     * Gets north indicator visibility.
50
     * 
51
     * @return
52
     */
53
    public boolean getNorthIndicatorVisibility();
54

    
55
    /**
56
     * Gets scale visibility.
57
     * 
58
     * @return
59
     */
60
    public boolean getScaleVisiblity();
61

    
62
    /**
63
     * Gets starts background visibility
64
     * 
65
     * @return
66
     */
67
    public boolean getStarsBackgroundVisiblity();
68

    
69
    /**
70
     * Get view port animation.
71
     * 
72
     * @return
73
     */
74
    public boolean getViewPortAnimation();
75

    
76
}