Changeset 5816 in josm for trunk/src/org
- Timestamp:
- 2013-03-31T15:09:56+02:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/ConflictResolveCommand.java
r5266 r5816 11 11 /** 12 12 * This is the common base class for {@link Command}s which manipulate {@link Conflict}s in 13 * addition to {@link OsmPrimitive}s.13 * addition to {@link org.openstreetmap.josm.data.osm.OsmPrimitive}s. 14 14 * 15 15 * A ConflictResolverCommand can remember a collection of conflicts it resolves. Upon undoing -
trunk/src/org/openstreetmap/josm/command/CoordinateConflictResolveCommand.java
r5266 r5816 26 26 27 27 /** 28 * constructor 28 * constructor for coordinate conflict 29 29 * 30 * @param my my node 31 * @param their their node 30 * @param conflict the conflict data set 32 31 * @param decision the merge decision 33 32 */ -
trunk/src/org/openstreetmap/josm/command/DeletedStateConflictResolveCommand.java
r5266 r5816 30 30 * constructor 31 31 * 32 * @param my my node 33 * @param their their node 32 * @param conflict the conflict data set 34 33 * @param decision the merge decision 35 34 */ -
trunk/src/org/openstreetmap/josm/command/ModifiedConflictResolveCommand.java
r5266 r5816 27 27 /** 28 28 * constructor 29 * @param my my primitive (i.e. the primitive from the local dataset) 30 * @param their their primitive (i.e. the primitive from the server) 29 * @param conflict the conflict data set 31 30 */ 32 31 public ModifiedConflictResolveCommand(Conflict<? extends OsmPrimitive> conflict) { -
trunk/src/org/openstreetmap/josm/command/TagConflictResolveCommand.java
r5266 r5816 46 46 * constructor 47 47 * 48 * @param my my primitive 49 * @param their their primitive 48 * @param conflict the conflict data set 50 49 * @param mergeItems the list of merge decisions, represented as {@link TagMergeItem}s 51 50 */ -
trunk/src/org/openstreetmap/josm/command/VersionConflictResolveCommand.java
r5266 r5816 25 25 /** 26 26 * constructor 27 * @param my my primitive (i.e. the primitive from the local dataset) 28 * @param their their primitive (i.e. the primitive from the server) 27 * @param conflict the conflict data set 29 28 */ 30 29 public VersionConflictResolveCommand(Conflict<? extends OsmPrimitive> conflict) { -
trunk/src/org/openstreetmap/josm/gui/bbox/BBoxChooser.java
r5266 r5816 12 12 13 13 /** 14 * A BBoxChooser emits {@link ProperyChangeEvent}s for this property14 * A BBoxChooser emits {@link java.beans.PropertyChangeEvent}s for this property 15 15 * if the current bounding box changes. 16 16 */ -
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableCellRenderer.java
r5266 r5816 16 16 /** 17 17 * The table cell renderer used in the changeset content table, except for the "name" 18 * column in which we use a {@link OsmPrimitivRenderer}.18 * column in which we use a {@link org.openstreetmap.josm.gui.OsmPrimitivRenderer}. 19 19 * 20 20 */ -
trunk/src/org/openstreetmap/josm/gui/help/HelpBrowser.java
r4590 r5816 239 239 * @return the current URL 240 240 */ 241 242 241 public String getUrl() { 243 242 return url; … … 544 543 545 544 /** 546 * Checks whether the hyperlink event originated on a <a ...>element with545 * Checks whether the hyperlink event originated on a <a ...> element with 547 546 * a relative href consisting of a URL fragment only, i.e. 548 * <a href="#thisIsALocalFragment">. If so, replies the fragment, i.e.547 * <a href="#thisIsALocalFragment">. If so, replies the fragment, i.e. 549 548 * "thisIsALocalFragment". 550 549 * 551 * Otherwise, replies null550 * Otherwise, replies <code>null</code> 552 551 * 553 552 * @param e the hyperlink event 554 * @return the local fragment 553 * @return the local fragment or <code>null</code> 555 554 */ 556 555 protected String getUrlFragment(HyperlinkEvent e) {
Note:
See TracChangeset
for help on using the changeset viewer.