Revision 40769 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/main/java/org/gvsig/remoteclient/utils/BoundaryBox.java

View differences:

BoundaryBox.java
24 24

  
25 25
package org.gvsig.remoteclient.utils;
26 26

  
27
/**
28
 * <p></p>
29
 * 
30
 */
31 27
public class BoundaryBox {
32 28
    
33
/**
34
 * <p>Represents ...</p>
35
 * 
36
 */
37 29
    private double xmin;
38 30

  
39
/**
40
 * <p>Represents ...</p>
41
 * 
42
 */
43 31
    private double xmax;
44

  
45
/**
46
 * <p>Represents ...</p>
47
 * 
48
 */
49 32
    private double ymin;
50

  
51
/**
52
 * <p>Represents ...</p>
53
 * 
54
 */
55 33
    private double ymax;
56

  
57
/**
58
 * <p>Represents ...</p>
59
 * 
60
 */
61 34
    private String srs;
62

  
63
/**
64
 * <p>Represents ...</p>
65
 * 
66
 * 
67
 * @return 
68
 */
69 35
    public double getXmin() {        
70 36
        return xmin;
71 37
    } 
72

  
73
/**
74
 * <p>Represents ...</p>
75
 * 
76
 * 
77
 * @param _xmin 
78
 */
79 38
    public void setXmin(double _xmin) {        
80 39
        xmin = _xmin;
81 40
    } 
82

  
83
/**
84
 * <p>Represents ...</p>
85
 * 
86
 * 
87
 * @return 
88
 */
89 41
    public double getXmax() {        
90 42
        return xmax;
91 43
    } 
92

  
93
/**
94
 * <p>Represents ...</p>
95
 * 
96
 * 
97
 * @param _xmax 
98
 */
99 44
    public void setXmax(double _xmax) {        
100 45
        xmax = _xmax;
101 46
    } 
102

  
103
/**
104
 * <p>Represents ...</p>
105
 * 
106
 * 
107
 * @return 
108
 */
109 47
    public double getYmin() {        
110 48
        return ymin;
111 49
    } 
112

  
113
/**
114
 * <p>Represents ...</p>
115
 * 
116
 * 
117
 * @param _ymin 
118
 */
119 50
    public void setYmin(double _ymin) {        
120 51
        ymin = _ymin;
121 52
    } 
122

  
123
/**
124
 * <p>Represents ...</p>
125
 * 
126
 * 
127
 * @return 
128
 */
129 53
    public double getYmax() {        
130 54
        return ymax;
131 55
    } 
132

  
133
/**
134
 * <p>Represents ...</p>
135
 * 
136
 * 
137
 * @param _ymax 
138
 */
139 56
    public void setYmax(double _ymax) {        
140 57
        ymax = _ymax;
141 58
    } 
142

  
143
/**
144
 * <p>Represents ...</p>
145
 * 
146
 * 
147
 * @return 
148
 */
149 59
    public String getSrs() {        
150 60
        return srs;
151 61
    } 
152

  
153
/**
154
 * <p>Represents ...</p>
155
 * 
156
 * 
157
 * @param _srs 
158
 */
159 62
    public void setSrs(String _srs) {        
160 63
        srs = _srs;
161 64
    }

Also available in: Unified diff