Changeset 11555 in osm for applications/editors/josm/plugins/globalsat/src/org/kaintoch
- Timestamp:
- 2008-10-29T22:29:00+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/globalsat/src/org/kaintoch/gps/globalsat/dg100/Dg100Config.java
r10378 r11555 156 156 * @return Returns the disableLogDist. 157 157 */ 158 public b ytegetDisableLogDist()159 { 160 return disableLogDist; 158 public boolean getDisableLogDist() 159 { 160 return disableLogDist != 0; 161 161 } 162 162 … … 164 164 * @param disableLogDist The disableLogDist to set. 165 165 */ 166 public void setDisableLogDist(b ytedisableLogDist)167 { 168 166 public void setDisableLogDist(boolean disableLogDist) 167 { 168 this.disableLogDist = (byte)(disableLogDist ? 1 : 0); 169 169 } 170 170 … … 172 172 * @return Returns the disableLogSpeed. 173 173 */ 174 public b ytegetDisableLogSpeed()175 { 176 return disableLogSpeed; 174 public boolean getDisableLogSpeed() 175 { 176 return disableLogSpeed != 0; 177 177 } 178 178 … … 180 180 * @param disableLogSpeed The disableLogSpeed to set. 181 181 */ 182 public void setDisableLogSpeed(b ytedisableLogSpeed)183 { 184 182 public void setDisableLogSpeed(boolean disableLogSpeed) 183 { 184 this.disableLogSpeed = (byte)(disableLogSpeed ? 1 : 0); 185 185 } 186 186
Note:
See TracChangeset
for help on using the changeset viewer.