- Timestamp:
- 2013-04-07T17:00:16+02:00 (12 years ago)
- Location:
- trunk
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeModel.java
r5266 r5832 17 17 18 18 /** 19 * This is the {@link TableModel} used in the tables of the {@link TagMerger}.19 * This is the {@link javax.swing.table.TableModel} used in the tables of the {@link TagMerger}. 20 20 * 21 21 * The model can {@link #populate(OsmPrimitive, OsmPrimitive)} itself from the conflicts … … 142 142 * to <code>decision</code>. 143 143 * 144 * @param row 144 * @param row the row 145 145 * @param decision the decision 146 146 */ … … 155 155 * to <code>decision</code>. 156 156 * 157 * @param row 157 * @param rows the array of row indices 158 158 * @param decision the decision 159 159 */ 160 161 160 public void decide(int [] rows, MergeDecisionType decision) { 162 161 if (rows == null || rows.length == 0) -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictResolverModel.java
r5266 r5832 23 23 * This model manages a list of conflicting relation members. 24 24 * 25 * It can be used as {@link TableModel}. 26 * 27 * 25 * It can be used as {@link javax.swing.table.TableModel}. 28 26 */ 29 27 public class RelationMemberConflictResolverModel extends DefaultTableModel { … … 251 249 * Builds a collection of commands executing the decisions made in this model. 252 250 * 253 * @param newPrimitive the primitive which members shall refer to if the 254 * decision is {@link RelationMemberConflictDecisionType#REPLACE} 251 * @param newPrimitive the primitive which members shall refer to 255 252 * @return a list of commands 256 253 */ … … 290 287 * to the decisions managed by this model. 291 288 * 292 * @param newPrimitive the primitive which members shall refer to if the 293 * decision is {@link RelationMemberConflictDecisionType#REPLACE} 289 * @param newPrimitive the primitive which members shall refer to 294 290 * 295 291 * @return the set of relations which have to be modified according -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolver.java
r5266 r5832 20 20 /** 21 21 * This is a UI widget for resolving tag conflicts, i.e. differences of the tag values 22 * of multiple {@link OsmPrimitive}s.22 * of multiple {@link org.openstreetmap.josm.data.osm.OsmPrimitive}s. 23 23 * 24 24 * -
trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserDialog.java
r5266 r5832 32 32 /** 33 33 * This is non-modal dialog, always showing on top, which displays history information 34 * about a given {@link OsmPrimitive}.34 * about a given {@link org.openstreetmap.josm.data.osm.OsmPrimitive}. 35 35 * 36 36 */ -
trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListViewer.java
r5627 r5832 17 17 /** 18 18 * RelationMemberListViewer is a UI component which displays the list of relation members of two 19 * version of a {@link Relation} in a {@linkHistory}.19 * version of a {@link org.openstreetmap.josm.data.osm.Relation} in a {@link org.openstreetmap.josm.data.osm.history.History}. 20 20 * 21 21 * <ul> -
trunk/src/org/openstreetmap/josm/gui/history/TagInfoViewer.java
r5266 r5832 13 13 /** 14 14 * TagInfoViewer is a UI component which displays the list of tags of two 15 * version of a {@link OsmPrimitive} in a {@linkHistory}.15 * version of a {@link org.openstreetmap.josm.data.osm.OsmPrimitive} in a {@link org.openstreetmap.josm.data.osm.history.History}. 16 16 * 17 17 * <ul> -
trunk/src/org/openstreetmap/josm/gui/history/TagTableCellRenderer.java
r5266 r5832 14 14 15 15 /** 16 * The {@link TableCellRenderer} for a list of tags in {@link HistoryBrower}16 * The {@link TableCellRenderer} for a list of tags in {@link HistoryBrowser} 17 17 * 18 18 */ -
trunk/src/org/openstreetmap/josm/gui/history/TagTableColumnModel.java
r5266 r5832 8 8 9 9 /** 10 * The {@link TableColumnModel} for the table with the list of tags10 * The {@link javax.swing.table.TableColumnModel} for the table with the list of tags 11 11 * 12 12 */ -
trunk/src/org/openstreetmap/josm/gui/io/UploadStrategySpecification.java
r5266 r5832 4 4 /** 5 5 * An UploadStrategySpecification consists of the parameter describing the strategy 6 * for uploading a collection of {@link OsmPrimitive}.6 * for uploading a collection of {@link org.openstreetmap.josm.data.osm.OsmPrimitive}. 7 7 * 8 8 * This includes: … … 12 12 * <li>whether to close the changeset used after the upload</li> 13 13 * </ul> 14 *15 *16 14 */ 17 15 public class UploadStrategySpecification { … … 50 48 /** 51 49 * Replies the upload strategy 52 * @return 50 * @return the upload strategy 53 51 */ 54 52 public UploadStrategy getStrategy() { -
trunk/src/org/openstreetmap/josm/io/OsmServerChangesetReader.java
r5266 r5832 22 22 23 23 /** 24 * Reads the history of an {@link OsmPrimitive} from the OSM API server.24 * Reads the history of an {@link org.openstreetmap.josm.data.osm.OsmPrimitive} from the OSM API server. 25 25 * 26 26 */
Note:
See TracChangeset
for help on using the changeset viewer.