Changeset 12453 in josm
- Timestamp:
- 2017-07-04T14:39:26+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/cache/ICachedLoaderJob.java
r9983 r12453 6 6 7 7 /** 8 * Interface for a job to load a single object (typically an imagery tile). 9 * It is either retrieved from cache or downloaded from the given URL ({@link #getUrl()}). 8 10 * 9 11 * @author Wiktor Niesiobędzki -
trunk/src/org/openstreetmap/josm/data/conflict/IConflictListener.java
r8512 r12453 2 2 package org.openstreetmap.josm.data.conflict; 3 3 4 /** 5 * Interface for listeners that get notified when conflicts are added to or 6 * removed from a {@link ConflictCollection}. 7 */ 4 8 public interface IConflictListener { 9 /** 10 * Called when conflicts are added. 11 * @param conflicts collection to which conflicts have been added 12 */ 5 13 void onConflictsAdded(ConflictCollection conflicts); 6 14 15 /** 16 * Called when conflicts are removed. 17 * @param conflicts collection from which conflicts have been removed 18 */ 7 19 void onConflictsRemoved(ConflictCollection conflicts); 8 20 } -
trunk/src/org/openstreetmap/josm/data/imagery/Shape.java
r9371 r12453 16 16 17 17 /** 18 * Data class to store the outline for background imagery coverage. 19 * 20 * Configuration data for imagery to describe the coverage area ({@link ImageryInfo.ImageryBounds}). 18 21 * @author Vincent 19 *20 22 */ 21 23 public class Shape { -
trunk/src/org/openstreetmap/josm/data/preferences/ParametrizedEnumProperty.java
r10420 r12453 4 4 import org.openstreetmap.josm.Main; 5 5 6 /** 7 * Abstract base class for properties with {@link Enum} value, where the preference 8 * key is generated from a list of parameters. 9 * @param <T> the {@code Enum} class 10 */ 6 11 public abstract class ParametrizedEnumProperty<T extends Enum<T>> { 7 12 -
trunk/src/org/openstreetmap/josm/data/projection/ProjectionChangeListener.java
r10600 r12453 2 2 package org.openstreetmap.josm.data.projection; 3 3 4 /** 5 * Interface for listeners to get notified when the (global) projection changes. 6 */ 4 7 @FunctionalInterface 5 8 public interface ProjectionChangeListener { -
trunk/src/org/openstreetmap/josm/data/projection/ProjectionConfigurationException.java
r9981 r12453 2 2 package org.openstreetmap.josm.data.projection; 3 3 4 /** 5 * Exception thrown when a projection cannot be constructed due to invalid input 6 * parameters. 7 * 8 * Used mainly in {@link CustomProjection}, where a parameter string is parsed 9 * and converted to a projection. 10 */ 4 11 public class ProjectionConfigurationException extends Exception { 5 12 -
trunk/src/org/openstreetmap/josm/data/projection/datum/AbstractDatum.java
r6883 r12453 4 4 import org.openstreetmap.josm.data.projection.Ellipsoid; 5 5 6 /** 7 * Abstract base class for {@link Datum} implementations. 8 * 9 * Adds common fields and access methods. 10 */ 6 11 public abstract class AbstractDatum implements Datum { 7 12
Note:
See TracChangeset
for help on using the changeset viewer.