Changeset 2512 in josm for trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ParentRelationLoadingTask.java
- Timestamp:
- 2009-11-24T10:45:04+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ParentRelationLoadingTask.java
r2434 r2512 26 26 /** 27 27 * This is an asynchronous task for loading the parents of a given relation. 28 * 28 * 29 29 * Typical usage: 30 30 * <pre> … … 62 62 /** 63 63 * Creates a new task for asynchronously downloading the parents of a child relation. 64 * 64 * 65 65 * @param child the child relation. Must not be null. Must have an id > 0. 66 66 * @param layer the OSM data layer. Must not be null. 67 67 * @param full if true, parent relations are fully downloaded (i.e. with their members) 68 68 * @param monitor the progress monitor to be used 69 * 69 * 70 70 * @exception IllegalArgumentException thrown if child is null 71 71 * @exception IllegalArgumentException thrown if layer is null … … 88 88 /** 89 89 * Set a continuation which is called upon the job finished. 90 * 90 * 91 91 * @param continuation the continuation 92 92 */ … … 97 97 /** 98 98 * Replies true if this has been cancelled by the user. 99 * 99 * 100 100 * @return true if this has been cancelled by the user. 101 101 */ … … 106 106 /** 107 107 * Replies true if an exception has been caught during the execution of this task. 108 * 108 * 109 109 * @return true if an exception has been caught during the execution of this task. 110 110 */ … … 112 112 return lastException != null; 113 113 } 114 115 114 116 115 protected OsmDataLayer getLayer() {
Note:
See TracChangeset
for help on using the changeset viewer.