Changeset 8795 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2015-09-24T23:56:05+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/cache/ICachedLoaderJob.java
r8673 r8795 43 43 * 44 44 * @param listener cache loader listener 45 * @param force true if the load should skip all the caches (local & remote) 45 * @param force true if the load should skip all the caches (local & remote) 46 46 * @throws IOException on failure from getUrl() call 47 47 */ -
trunk/src/org/openstreetmap/josm/data/gpx/GpxConstants.java
r8512 r8795 53 53 String PT_TIME = "time"; 54 54 55 /** Magnetic variation (in degrees) at the point. 0.0 <= value<360.0 */55 /** Magnetic variation (in degrees) at the point. 0.0 <= value < 360.0 */ 56 56 String PT_MAGVAR = "magvar"; 57 57 … … 83 83 String PT_AGEOFDGPSDATA = "ageofdgpsdata"; 84 84 85 /** Represents a differential GPS station. 0 <= value<= 1023 */85 /** Represents a differential GPS station. 0 <= value <= 1023 */ 86 86 String PT_DGPSID = "dgpsid"; 87 87 -
trunk/src/org/openstreetmap/josm/data/projection/Ellipsoid.java
r8510 r8795 25 25 26 26 /** 27 * Australian National Spheroid (Australian Natl & S. Amer. 1969) 27 * Australian National Spheroid (Australian Natl & S. Amer. 1969) 28 28 * same as GRS67 Modified 29 29 */ -
trunk/src/org/openstreetmap/josm/data/validation/routines/RegexValidator.java
r8510 r8795 34 34 * <p> 35 35 * <ul> 36 * <li>Validate <code>true</code> or <code>false</code>: </li>36 * <li>Validate <code>true</code> or <code>false</code>: 37 37 * <ul> 38 38 * <li><code>boolean valid = validator.isValid(value);</code></li> 39 * </ul> 40 * <li>Validate returning an aggregated String of the matched groups: </li>39 * </ul></li> 40 * <li>Validate returning an aggregated String of the matched groups: 41 41 * <ul> 42 42 * <li><code>String result = validator.validate(value);</code></li> 43 * </ul> 44 * <li>Validate returning the matched groups: </li>43 * </ul></li> 44 * <li>Validate returning the matched groups: 45 45 * <ul> 46 46 * <li><code>String[] result = validator.match(value);</code></li> 47 * </ul> 47 * </ul></li> 48 48 * </ul> 49 49 * <p> -
trunk/src/org/openstreetmap/josm/data/validation/routines/UrlValidator.java
r8510 r8795 28 28 /** 29 29 * <p><b>URL Validation</b> routines.</p> 30 * Behavior of validation is modified by passing in options: 30 * Behavior of validation is modified by passing in options:<ul> 31 31 * <li>ALLOW_2_SLASHES - [FALSE] Allows double '/' characters in the path 32 32 * component.</li> … … 35 35 * <li>ALLOW_ALL_SCHEMES - [FALSE] By default only http, https, and ftp are 36 36 * considered valid schemes. Enabling this option will let any scheme pass validation.</li> 37 * 37 * </ul> 38 38 * <p>Originally based in on php script by Debbie Dyer, validation.php v1.2b, Date: 03/07/02, 39 39 * http://javascript.internet.com. However, this validation now bears little resemblance
Note:
See TracChangeset
for help on using the changeset viewer.