Changeset 19399 in josm
- Timestamp:
- 2025-05-06T17:35:07+02:00 (4 days ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/IPrimitive.java
r19366 r19399 39 39 * Set the status of the referrers 40 40 * @param referrersDownloaded {@code true} if all referrers for this object have been downloaded 41 * @since xxx41 * @since 19078 42 42 */ 43 43 default void setReferrersDownloaded(boolean referrersDownloaded) { … … 88 88 * @return {@code true} if the primitive is fully downloaded and all parents and children should be available. 89 89 * {@code false} otherwise. 90 * @since xxx90 * @since 19078 91 91 */ 92 92 default boolean isReferrersDownloaded() { -
trunk/src/org/openstreetmap/josm/data/osm/MultipolygonBuilder.java
r19336 r19399 164 164 * @return a pair of outer and inner multipolygon rings. 165 165 * @throws JoinedPolygonCreationException if the creation fails. 166 * @since xxx166 * @since 19336 167 167 */ 168 168 public static Pair<List<JoinedPolygon>, List<JoinedPolygon>> joinWays( -
trunk/src/org/openstreetmap/josm/gui/animation/BirthdayExtension.java
r19254 r19399 23 23 * Birthday animation game extension. 24 24 * @author Pauline Thiele 25 * @since xxx25 * @since 19254 26 26 */ 27 27 public class BirthdayExtension extends JPanel implements AnimationExtension, MouseListener, MouseMotionListener { -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/IRelationEditor.java
r19398 r19399 52 52 * @param ignoreUninterestingTags whether to ignore uninteresting tag changes 53 53 * @return true if the currently edited relation has been changed elsewhere. 54 * @since xxx54 * @since 19398 55 55 */ 56 56 boolean isDirtyRelation(boolean ignoreUninterestingTags); … … 62 62 * 63 63 * @return true if the currently edited relation has been changed in the editor. 64 * @since xxx64 * @since 19398 65 65 */ 66 66 boolean isDirtyEditor(); -
trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java
r19080 r19399 302 302 * Get the bounds for this downloader 303 303 * @return The bounds for this downloader 304 * @since xxx304 * @since 19078 305 305 */ 306 306 protected Collection<Bounds> getBounds() { -
trunk/src/org/openstreetmap/josm/tools/Geometry.java
r19336 r19399 1233 1233 * @param cache The cache to avoid calculating joined inner/outer ways multiple times (see {@link MultipolygonBuilder#joinWays(Relation)}) 1234 1234 * @return a new list containing the found primitives, empty if multipolygon is invalid or nothing was found. 1235 * @since xxx1235 * @since 19336 1236 1236 */ 1237 1237 public static List<IPrimitive> filterInsideMultipolygon(Collection<IPrimitive> primitives, Relation multiPolygon,
Note:
See TracChangeset
for help on using the changeset viewer.