Index: trunk/src/org/openstreetmap/josm/actions/ChangesetManagerToggleAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/ChangesetManagerToggleAction.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/ChangesetManagerToggleAction.java	(revision 5266)
@@ -18,5 +18,5 @@
 import org.openstreetmap.josm.tools.Shortcut;
 /**
- * This action toggles the visibility of the {@see ChangesetCacheManager} dialog.
+ * This action toggles the visibility of the {@link ChangesetCacheManager} dialog.
  *
  */
Index: trunk/src/org/openstreetmap/josm/actions/ExtensionFileFilter.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/ExtensionFileFilter.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/ExtensionFileFilter.java	(revision 5266)
@@ -93,5 +93,5 @@
 
     /**
-     * Updates the {@see AllFormatsImporter} that is contained in the importers list. If
+     * Updates the {@link AllFormatsImporter} that is contained in the importers list. If
      * you do not use the importers variable directly, you don’t need to call this.
      * 
@@ -109,9 +109,9 @@
 
     /**
-     * Replies an ordered list of {@see ExtensionFileFilter}s for importing.
-     * The list is ordered according to their description, an {@see AllFormatsImporter}
+     * Replies an ordered list of {@link ExtensionFileFilter}s for importing.
+     * The list is ordered according to their description, an {@link AllFormatsImporter}
      * is append at the end.
      *
-     * @return an ordered list of {@see ExtensionFileFilter}s for importing.
+     * @return an ordered list of {@link ExtensionFileFilter}s for importing.
      */
     public static List<ExtensionFileFilter> getImportExtensionFileFilters() {
@@ -126,9 +126,9 @@
 
     /**
-     * Replies an ordered list of {@see ExtensionFileFilter}s for exporting.
-     * The list is ordered according to their description, an {@see AllFormatsImporter}
+     * Replies an ordered list of {@link ExtensionFileFilter}s for exporting.
+     * The list is ordered according to their description, an {@link AllFormatsImporter}
      * is append at the end.
      *
-     * @return an ordered list of {@see ExtensionFileFilter}s for exporting.
+     * @return an ordered list of {@link ExtensionFileFilter}s for exporting.
      */
     public static List<ExtensionFileFilter> getExportExtensionFileFilters() {
@@ -145,8 +145,8 @@
 
     /**
-     * Replies the default {@see ExtensionFileFilter} for a given extension
+     * Replies the default {@link ExtensionFileFilter} for a given extension
      *
      * @param extension the extension
-     * @return the default {@see ExtensionFileFilter} for a given extension
+     * @return the default {@link ExtensionFileFilter} for a given extension
      */
     public static ExtensionFileFilter getDefaultImportExtensionFileFilter(String extension) {
@@ -160,8 +160,8 @@
 
     /**
-     * Replies the default {@see ExtensionFileFilter} for a given extension
+     * Replies the default {@link ExtensionFileFilter} for a given extension
      *
      * @param extension the extension
-     * @return the default {@see ExtensionFileFilter} for a given extension
+     * @return the default {@link ExtensionFileFilter} for a given extension
      */
     public static ExtensionFileFilter getDefaultExportExtensionFileFilter(String extension) {
@@ -175,5 +175,5 @@
 
     /**
-     * Applies the choosable {@see FileFilter} to a {@see JFileChooser} before using the
+     * Applies the choosable {@link FileFilter} to a {@link JFileChooser} before using the
      * file chooser for selecting a file for reading.
      *
@@ -189,5 +189,5 @@
 
     /**
-     * Applies the choosable {@see FileFilter} to a {@see JFileChooser} before using the
+     * Applies the choosable {@link FileFilter} to a {@link JFileChooser} before using the
      * file chooser for selecting a file for writing.
      *
Index: trunk/src/org/openstreetmap/josm/actions/GpxExportAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/GpxExportAction.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/GpxExportAction.java	(revision 5266)
@@ -61,10 +61,10 @@
      *
      * <code>layer</code> must not be null. <code>layer</code> must be an instance of
-     * {@see OsmDataLayer} or {@see GpxLayer}.
+     * {@link OsmDataLayer} or {@link GpxLayer}.
      *
      * @param layer the layer
      * @exception IllegalArgumentException thrown if layer is null
-     * @exception IllegalArgumentException thrown if layer is neither an instance of {@see OsmDataLayer}
-     *  nor of {@see GpxLayer}
+     * @exception IllegalArgumentException thrown if layer is neither an instance of {@link OsmDataLayer}
+     *  nor of {@link GpxLayer}
      */
     public void export(Layer layer) {
Index: trunk/src/org/openstreetmap/josm/actions/JosmAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/JosmAction.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/JosmAction.java	(revision 5266)
@@ -24,9 +24,9 @@
  * Base class helper for all Actions in JOSM. Just to make the life easier.
  *
- * A JosmAction is a {@see LayerChangeListener} and a {@see SelectionChangedListener}. Upon
- * a layer change event or a selection change event it invokes {@see #updateEnabled()}.
- * Subclasses can override {@see #updateEnabled()} in order to update the {@see #isEnabled()}-state
- * of a JosmAction depending on the {@see #getCurrentDataSet()} and the current layers
- * (see also {@see #getEditLayer()}).
+ * A JosmAction is a {@link LayerChangeListener} and a {@link SelectionChangedListener}. Upon
+ * a layer change event or a selection change event it invokes {@link #updateEnabled()}.
+ * Subclasses can override {@link #updateEnabled()} in order to update the {@link #isEnabled()}-state
+ * of a JosmAction depending on the {@link #getCurrentDataSet()} and the current layers
+ * (see also {@link #getEditLayer()}).
  *
  * destroy() from interface Destroyable is called e.g. for MapModes, when the last layer has
@@ -179,5 +179,5 @@
     /**
      * Override in subclasses to init the enabled state of an action when it is
-     * created. Default behaviour is to call {@see #updateEnabledState()}
+     * created. Default behaviour is to call {@link #updateEnabledState()}
      *
      * @see #updateEnabledState()
@@ -192,5 +192,5 @@
      * something in the JOSM state changes, i.e. when a layer is removed or added.
      *
-     * See {@see #updateEnabledState(Collection)} to respond to changes in the collection
+     * See {@link #updateEnabledState(Collection)} to respond to changes in the collection
      * of selected primitives.
      *
Index: trunk/src/org/openstreetmap/josm/actions/PasteTagsAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/PasteTagsAction.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/PasteTagsAction.java	(revision 5266)
@@ -53,5 +53,5 @@
         /**
          * Replies true if the source for tag pasting is heterogeneous, i.e. if it doesn't consist of
-         * {@see OsmPrimitive}s of exactly one type
+         * {@link OsmPrimitive}s of exactly one type
          *
          * @return
@@ -130,6 +130,6 @@
 
         /**
-         * Pastes the tags from a homogeneous source (i.e. the {@see Main#pasteBuffer}s selection consisting
-         * of one type of {@see OsmPrimitive}s only.
+         * Pastes the tags from a homogeneous source (i.e. the {@link Main#pasteBuffer}s selection consisting
+         * of one type of {@link OsmPrimitive}s only.
          *
          * Tags from a homogeneous source can be pasted to a heterogeneous target. All target primitives,
Index: trunk/src/org/openstreetmap/josm/actions/SplitWayAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/SplitWayAction.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/SplitWayAction.java	(revision 5266)
@@ -468,8 +468,8 @@
     /**
      * Splits the way {@code way} at the nodes in {@code atNodes} and replies
-     * the result of this process in an instance of {@see SplitWayResult}.
+     * the result of this process in an instance of {@link SplitWayResult}.
      *
      * Note that changes are not applied to the data yet. You have to
-     * submit the command in {@see SplitWayResult#getCommand()} first,
+     * submit the command in {@link SplitWayResult#getCommand()} first,
      * i.e. {@code Main.main.undoredo.add(result.getCommand())}.
      *
Index: trunk/src/org/openstreetmap/josm/actions/UpdateSelectionAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/UpdateSelectionAction.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/UpdateSelectionAction.java	(revision 5266)
@@ -47,8 +47,8 @@
 
     /**
-     * Updates the data for for the {@see OsmPrimitive}s in <code>selection</code>
+     * Updates the data for for the {@link OsmPrimitive}s in <code>selection</code>
      * with the data currently kept on the server.
      *
-     * @param selection a collection of {@see OsmPrimitive}s to update
+     * @param selection a collection of {@link OsmPrimitive}s to update
      *
      */
@@ -59,8 +59,8 @@
 
     /**
-     * Updates the data for  the {@see OsmPrimitive}s with id <code>id</code>
+     * Updates the data for  the {@link OsmPrimitive}s with id <code>id</code>
      * with the data currently kept on the server.
      *
-     * @param id  the id of a primitive in the {@see DataSet} of the current edit layer. Must not be null.
+     * @param id  the id of a primitive in the {@link DataSet} of the current edit layer. Must not be null.
      * @throws IllegalArgumentException thrown if id is null
      * @exception IllegalStateException thrown if there is no primitive with <code>id</code> in
Index: trunk/src/org/openstreetmap/josm/actions/UploadAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/UploadAction.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/UploadAction.java	(revision 5266)
@@ -136,5 +136,5 @@
      * Check whether the preconditions are met to upload data in <code>apiData</code>.
      * Makes sure upload is allowed, primitives in <code>apiData</code> don't participate in conflicts and
-     * runs the installed {@see UploadHook}s.
+     * runs the installed {@link UploadHook}s.
      *
      * @param layer the source layer of the data to be uploaded
Index: trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadTask.java	(revision 5266)
@@ -13,9 +13,9 @@
      *
      * Set <code>progressMonitor</code> to null, if the task should create, open, and close a progress monitor.
-     * Set progressMonitor to {@see NullProgressMonitor#INSTANCE} if progress information is to
+     * Set progressMonitor to {@link NullProgressMonitor#INSTANCE} if progress information is to
      * be discarded.
      *
      * You can wait for the asynchronous download task to finish by synchronizing on the returned
-     * {@see Future}, but make sure not to freeze up JOSM. Example:
+     * {@link Future}, but make sure not to freeze up JOSM. Example:
      * <pre>
      *    Future<?> future = task.download(...);
@@ -53,5 +53,5 @@
      *
      * Set progressMonitor to null, if the task should create, open, and close a progress monitor.
-     * Set progressMonitor to {@see NullProgressMonitor#INSTANCE} if progress information is to
+     * Set progressMonitor to {@link NullProgressMonitor#INSTANCE} if progress information is to
      * be discarded.
 
@@ -76,5 +76,5 @@
      * Replies the error objects of the task. Empty list, if no error messages are available.
      *
-     * Error objects are either {@see String}s with error messages or {@see Exception}s.
+     * Error objects are either {@link String}s with error messages or {@link Exception}s.
      *
      * @return the list of error objects
Index: trunk/src/org/openstreetmap/josm/actions/mapmode/DeleteAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/mapmode/DeleteAction.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/actions/mapmode/DeleteAction.java	(revision 5266)
@@ -331,5 +331,5 @@
     /**
      * Deletes the relation in the context of the given layer. Also notifies
-     * {@see RelationDialogManager} and {@see OsmDataLayer#fireDataChange()} events.
+     * {@link RelationDialogManager} and {@link OsmDataLayer#fireDataChange()} events.
      *
      * @param layer the layer in whose context the relation is deleted. Must not be null.
Index: trunk/src/org/openstreetmap/josm/command/AddCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/AddCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/AddCommand.java	(revision 5266)
@@ -20,5 +20,5 @@
  * way.
  *
- * See {@see ChangeCommand} for comments on relation back references.
+ * See {@link ChangeCommand} for comments on relation back references.
  *
  * @author imi
Index: trunk/src/org/openstreetmap/josm/command/Command.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/Command.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/Command.java	(revision 5266)
@@ -35,5 +35,5 @@
  * one atomic action on a specific dataset, such as move or delete.
  *
- * The command remembers the {@see OsmDataLayer} it is operating on.
+ * The command remembers the {@link OsmDataLayer} it is operating on.
  *
  * @author imi
Index: trunk/src/org/openstreetmap/josm/command/ConflictResolveCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/ConflictResolveCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/ConflictResolveCommand.java	(revision 5266)
@@ -10,6 +10,6 @@
 
 /**
- * This is the common base class for {@see Command}s which manipulate {@see Conflict}s in
- * addition to {@see OsmPrimitive}s.
+ * This is the common base class for {@link Command}s which manipulate {@link Conflict}s in
+ * addition to {@link OsmPrimitive}s.
  *
  * A ConflictResolverCommand can remember a collection of conflicts it resolves. Upon undoing
@@ -44,5 +44,5 @@
     /**
      * reconstitutes all remembered conflicts. Add the remembered conflicts to the
-     * set of conflicts of the {@see OsmDataLayer} this command was applied to.
+     * set of conflicts of the {@link OsmDataLayer} this command was applied to.
      *
      */
Index: trunk/src/org/openstreetmap/josm/command/CoordinateConflictResolveCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/CoordinateConflictResolveCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/CoordinateConflictResolveCommand.java	(revision 5266)
@@ -14,5 +14,5 @@
 
 /**
- * Represents a the resolution of a conflict between the coordinates of two {@see Node}s
+ * Represents a the resolution of a conflict between the coordinates of two {@link Node}s
  *
  */
Index: trunk/src/org/openstreetmap/josm/command/DeleteCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/DeleteCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/DeleteCommand.java	(revision 5266)
@@ -239,5 +239,5 @@
      * If a way is deleted, only the way and no nodes are deleted.
      *
-     * @param layer the {@see OsmDataLayer} in whose context primitives are deleted. Must not be null.
+     * @param layer the {@link OsmDataLayer} in whose context primitives are deleted. Must not be null.
      * @param selection The list of all object to be deleted.
      * @param silent  Set to true if the user should not be bugged with additional dialogs
@@ -270,5 +270,5 @@
      * can be deleted too. A node can be deleted if
      * <ul>
-     *    <li>it is untagged (see {@see Node#isTagged()}</li>
+     *    <li>it is untagged (see {@link Node#isTagged()}</li>
      *    <li>it is not referred to by other non-deleted primitives outside of  <code>primitivesToDelete</code></li>
      * <ul>
@@ -310,5 +310,5 @@
      * they are part of a relation, inform the user and do not delete.
      *
-     * @param layer the {@see OsmDataLayer} in whose context the primitives are deleted
+     * @param layer the {@link OsmDataLayer} in whose context the primitives are deleted
      * @param selection the objects to delete.
      * @param alsoDeleteNodesInWay <code>true</code> if nodes should be deleted as well
@@ -329,5 +329,5 @@
      * they are part of a relation, inform the user and do not delete.
      *
-     * @param layer the {@see OsmDataLayer} in whose context the primitives are deleted
+     * @param layer the {@link OsmDataLayer} in whose context the primitives are deleted
      * @param selection the objects to delete.
      * @param alsoDeleteNodesInWay <code>true</code> if nodes should be deleted as well
Index: trunk/src/org/openstreetmap/josm/command/DeletedStateConflictResolveCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/DeletedStateConflictResolveCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/DeletedStateConflictResolveCommand.java	(revision 5266)
@@ -16,5 +16,5 @@
 
 /**
- * Represents a the resolution of a conflict between the coordinates of two {@see Node}s
+ * Represents a the resolution of a conflict between the coordinates of two {@link Node}s
  *
  */
Index: trunk/src/org/openstreetmap/josm/command/ModifiedConflictResolveCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/ModifiedConflictResolveCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/ModifiedConflictResolveCommand.java	(revision 5266)
@@ -16,5 +16,5 @@
 
 /**
- * Represents a command for to set the modified flag {@see OsmPrimitive}
+ * Represents a command for to set the modified flag {@link OsmPrimitive}
  *
  *
Index: trunk/src/org/openstreetmap/josm/command/RelationMemberConflictResolverCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/RelationMemberConflictResolverCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/RelationMemberConflictResolverCommand.java	(revision 5266)
@@ -18,5 +18,5 @@
 /**
  * Represent a command for resolving conflicts in the member lists of two
- * {@see Relation}s.
+ * {@link Relation}s.
  *
  */
Index: trunk/src/org/openstreetmap/josm/command/TagConflictResolveCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/TagConflictResolveCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/TagConflictResolveCommand.java	(revision 5266)
@@ -18,5 +18,5 @@
 
 /**
- * Represents a the resolution of a tag conflict in an {@see OsmPrimitive}
+ * Represents a the resolution of a tag conflict in an {@link OsmPrimitive}
  *
  */
@@ -25,5 +25,5 @@
     private Conflict<? extends OsmPrimitive> conflict;
 
-    /** the list of merge decisions, represented as {@see TagMergeItem}s */
+    /** the list of merge decisions, represented as {@link TagMergeItem}s */
     private final List<TagMergeItem> mergeItems;
 
@@ -48,5 +48,5 @@
      * @param my  my primitive
      * @param their  their primitive
-     * @param mergeItems the list of merge decisions, represented as {@see TagMergeItem}s
+     * @param mergeItems the list of merge decisions, represented as {@link TagMergeItem}s
      */
     public TagConflictResolveCommand(Conflict<? extends OsmPrimitive> conflict, List<TagMergeItem> mergeItems) {
Index: trunk/src/org/openstreetmap/josm/command/VersionConflictResolveCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/VersionConflictResolveCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/VersionConflictResolveCommand.java	(revision 5266)
@@ -14,5 +14,5 @@
 
 /**
- * Represents a command for resolving a version conflict between two {@see OsmPrimitive}
+ * Represents a command for resolving a version conflict between two {@link OsmPrimitive}
  *
  *
Index: trunk/src/org/openstreetmap/josm/command/WayNodesConflictResolverCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/WayNodesConflictResolverCommand.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/command/WayNodesConflictResolverCommand.java	(revision 5266)
@@ -17,5 +17,5 @@
 /**
  * Represent a command for resolving conflicts in the node list of two
- * {@see Way}s.
+ * {@link Way}s.
  *
  */
Index: trunk/src/org/openstreetmap/josm/data/APIDataSet.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/APIDataSet.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/APIDataSet.java	(revision 5266)
@@ -28,7 +28,7 @@
 
 /**
- * Represents a collection of {@see OsmPrimitive}s which should be uploaded to the
+ * Represents a collection of {@link OsmPrimitive}s which should be uploaded to the
  * API.
- * The collection is derived from the modified primitives of an {@see DataSet} and it provides methods
+ * The collection is derived from the modified primitives of an {@link DataSet} and it provides methods
  * for sorting the objects in upload order.
  *
Index: trunk/src/org/openstreetmap/josm/data/Version.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/Version.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/Version.java	(revision 5266)
@@ -180,5 +180,5 @@
 
     /**
-     * Replies the JOSM version. Replies {@see #JOSM_UNKNOWN_VERSION} if the version isn't known.
+     * Replies the JOSM version. Replies {@link #JOSM_UNKNOWN_VERSION} if the version isn't known.
      * @return the JOSM version
      */
Index: trunk/src/org/openstreetmap/josm/data/conflict/Conflict.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/conflict/Conflict.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/conflict/Conflict.java	(revision 5266)
@@ -6,12 +6,12 @@
 
 /**
- * Represents a conflict between two {@see OsmPrimitive}s. It is represented as
- * a pair of {@see OsmPrimitive}s where one element of the pair has the role <em>my</em>
+ * Represents a conflict between two {@link OsmPrimitive}s. It is represented as
+ * a pair of {@link OsmPrimitive}s where one element of the pair has the role <em>my</em>
  * and the other has the role <em>their</em>.
  * <ul>
- *   <li><code>my</code> is the {@see OsmPrimitive} in the local dataset</li>
- *   <li><code>their</code> is the {@see OsmPrimitive} which caused the conflict when it
+ *   <li><code>my</code> is the {@link OsmPrimitive} in the local dataset</li>
+ *   <li><code>their</code> is the {@link OsmPrimitive} which caused the conflict when it
  *   it was tried to merge it onto <code>my</code>. <code>their</code> is usually the
- *   {@see OsmPrimitive} from the dataset in another layer or the one retrieved from the server.</li>
+ *   {@link OsmPrimitive} from the dataset in another layer or the one retrieved from the server.</li>
  * </ul>
  *
Index: trunk/src/org/openstreetmap/josm/data/conflict/ConflictCollection.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/conflict/ConflictCollection.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/conflict/ConflictCollection.java	(revision 5266)
@@ -16,5 +16,5 @@
 
 /**
- * This is a collection of {@see Conflict}s. This collection is {@see Iterable}, i.e.
+ * This is a collection of {@link Conflict}s. This collection is {@link Iterable}, i.e.
  * it can be used in <code>for</code>-loops as follows:
  * <pre>
@@ -29,6 +29,6 @@
  * and unregister for these events using:
  * <ul>
- *   <li>{@see #addConflictListener(IConflictListener)}</li>
- *   <li>{@see #removeConflictListener(IConflictListener)}</li>
+ *   <li>{@link #addConflictListener(IConflictListener)}</li>
+ *   <li>{@link #removeConflictListener(IConflictListener)}</li>
  * </ul>
  */
@@ -108,5 +108,5 @@
 
     /**
-     * Adds a conflict for the pair of {@see OsmPrimitive}s given by <code>my</code> and
+     * Adds a conflict for the pair of {@link OsmPrimitive}s given by <code>my</code> and
      * <code>their</code>.
      *
@@ -130,5 +130,5 @@
 
     /**
-     * removes the conflict registered for {@see OsmPrimitive} <code>my</code> if any
+     * removes the conflict registered for {@link OsmPrimitive} <code>my</code> if any
      *
      * @param my  the primitive
@@ -145,9 +145,9 @@
 
     /**
-     * Replies the conflict for the {@see OsmPrimitive} <code>my</code>, null
+     * Replies the conflict for the {@link OsmPrimitive} <code>my</code>, null
      * if no such conflict exists.
      *
      * @param my  my primitive
-     * @return the conflict for the {@see OsmPrimitive} <code>my</code>, null
+     * @return the conflict for the {@link OsmPrimitive} <code>my</code>, null
      * if no such conflict exists.
      */
@@ -160,9 +160,9 @@
     }
     /**
-     * Replies the conflict for the {@see OsmPrimitive} <code>their</code>, null
+     * Replies the conflict for the {@link OsmPrimitive} <code>their</code>, null
      * if no such conflict exists.
      *
      * @param my  my primitive
-     * @return the conflict for the {@see OsmPrimitive} <code>their</code>, null
+     * @return the conflict for the {@link OsmPrimitive} <code>their</code>, null
      * if no such conflict exists.
      */
@@ -206,5 +206,5 @@
 
     /**
-     * Removes any conflicts for the {@see OsmPrimitive} <code>my</code>.
+     * Removes any conflicts for the {@link OsmPrimitive} <code>my</code>.
      *
      * @param my the primitive
@@ -220,5 +220,5 @@
 
     /**
-     * Removes any conflicts for the {@see OsmPrimitive} <code>their</code>.
+     * Removes any conflicts for the {@link OsmPrimitive} <code>their</code>.
      *
      * @param their the primitive
@@ -277,8 +277,8 @@
 
     /**
-     * Replies the set of  {@see OsmPrimitive} which participate in the role
+     * Replies the set of  {@link OsmPrimitive} which participate in the role
      * of "my" in the conflicts managed by this collection.
      *
-     * @return the set of  {@see OsmPrimitive} which participate in the role
+     * @return the set of  {@link OsmPrimitive} which participate in the role
      * of "my" in the conflicts managed by this collection.
      */
@@ -291,8 +291,8 @@
     }
     /**
-     * Replies the set of  {@see OsmPrimitive} which participate in the role
+     * Replies the set of  {@link OsmPrimitive} which participate in the role
      * of "their" in the conflicts managed by this collection.
      *
-     * @return the set of  {@see OsmPrimitive} which participate in the role
+     * @return the set of  {@link OsmPrimitive} which participate in the role
      * of "their" in the conflicts managed by this collection.
      */
Index: trunk/src/org/openstreetmap/josm/data/oauth/OAuthParameters.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/oauth/OAuthParameters.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/oauth/OAuthParameters.java	(revision 5266)
@@ -128,5 +128,5 @@
 
     /**
-     * Builds an {@see OAuthConsumer} based on these parameters
+     * Builds an {@link OAuthConsumer} based on these parameters
      *
      * @return the consumer
@@ -138,5 +138,5 @@
 
     /**
-     * Builds an {@see OAuthProvider} based on these parameters and a OAuth consumer <code>consumer</code>.
+     * Builds an {@link OAuthProvider} based on these parameters and a OAuth consumer <code>consumer</code>.
      *
      * @param consumer the consumer. Must not be null.
Index: trunk/src/org/openstreetmap/josm/data/oauth/OAuthToken.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/oauth/OAuthToken.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/oauth/OAuthToken.java	(revision 5266)
@@ -9,5 +9,5 @@
 
     /**
-     * Creates an OAuthToken from the token currently managed by the {@see OAuthConsumer}.
+     * Creates an OAuthToken from the token currently managed by the {@link OAuthConsumer}.
      *
      * @param consumer the consumer
Index: trunk/src/org/openstreetmap/josm/data/osm/AbstractPrimitive.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/AbstractPrimitive.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/AbstractPrimitive.java	(revision 5266)
@@ -492,5 +492,5 @@
     /**
      * Set the given value to the given key. If key is null, does nothing. If value is null,
-     * removes the key and behaves like {@see #remove(String)}.
+     * removes the key and behaves like {@link #remove(String)}.
      *
      * @param key  The key, for which the value is to be set. Can be null, does nothing in this case.
Index: trunk/src/org/openstreetmap/josm/data/osm/ChangesetCache.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/ChangesetCache.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/ChangesetCache.java	(revision 5266)
@@ -20,15 +20,15 @@
  * ChangesetCache is global in-memory cache for changesets downloaded from
  * an OSM API server. The unique instance is available as singleton, see
- * {@see #getInstance()}.
- *
- * Clients interested in cache updates can register for {@see ChangesetCacheEvent}s
- * using {@see #addChangesetCacheListener(ChangesetCacheListener)}. They can use
- * {@see #removeChangesetCacheListener(ChangesetCacheListener)} to unregister as
+ * {@link #getInstance()}.
+ *
+ * Clients interested in cache updates can register for {@link ChangesetCacheEvent}s
+ * using {@link #addChangesetCacheListener(ChangesetCacheListener)}. They can use
+ * {@link #removeChangesetCacheListener(ChangesetCacheListener)} to unregister as
  * cache event listener.
  *
- * The cache itself listens to {@see java.util.prefs.PreferenceChangeEvent}s. It
+ * The cache itself listens to {@link java.util.prefs.PreferenceChangeEvent}s. It
  * clears itself if the OSM API URL is changed in the preferences.
  *
- * {@see ChangesetCacheEvent}s are delivered on the EDT.
+ * {@link ChangesetCacheEvent}s are delivered on the EDT.
  *
  */
@@ -150,5 +150,5 @@
     /**
      * Removes the changesets in <code>changesets</code> from the cache. A
-     * {@see ChangesetCacheEvent} is fired.
+     * {@link ChangesetCacheEvent} is fired.
      *
      * @param changesets the changesets to remove. Ignored if null.
Index: trunk/src/org/openstreetmap/josm/data/osm/ChangesetDataSet.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/ChangesetDataSet.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/ChangesetDataSet.java	(revision 5266)
@@ -135,9 +135,9 @@
 
     /**
-     * Replies the {@see HistoryOsmPrimitive} with id <code>id</code> from this
+     * Replies the {@link HistoryOsmPrimitive} with id <code>id</code> from this
      * dataset. null, if there is no such primitive in the data set.
      *
      * @param id the id
-     * @return  the {@see HistoryOsmPrimitive} with id <code>id</code> from this
+     * @return  the {@link HistoryOsmPrimitive} with id <code>id</code> from this
      * dataset
      */
Index: trunk/src/org/openstreetmap/josm/data/osm/DataSet.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/DataSet.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/DataSet.java	(revision 5266)
@@ -379,6 +379,6 @@
      * Removes a primitive from the dataset. This method only removes the
      * primitive form the respective collection of primitives managed
-     * by this dataset, i.e. from {@see #nodes}, {@see #ways}, or
-     * {@see #relations}. References from other primitives to this
+     * by this dataset, i.e. from {@link #nodes}, {@link #ways}, or
+     * {@link #relations}. References from other primitives to this
      * primitive are left unchanged.
      *
@@ -433,5 +433,5 @@
 
     /**
-     * Notifies all registered {@see SelectionChangedListener} about the current selection in
+     * Notifies all registered {@link SelectionChangedListener} about the current selection in
      * this dataset.
      *
@@ -584,5 +584,5 @@
     /**
      * Sets the current selection to the primitives in <code>selection</code>.
-     * Notifies all {@see SelectionChangedListener} if <code>fireSelectionChangeEvent</code> is true.
+     * Notifies all {@link SelectionChangedListener} if <code>fireSelectionChangeEvent</code> is true.
      *
      * @param selection the selection
@@ -609,5 +609,5 @@
     /**
      * Sets the current selection to the primitives in <code>selection</code>
-     * and notifies all {@see SelectionChangedListener}.
+     * and notifies all {@link SelectionChangedListener}.
      *
      * @param selection the selection
@@ -628,5 +628,5 @@
     /**
      * Adds   the primitives in <code>selection</code> to the current selection
-     * and notifies all {@see SelectionChangedListener}.
+     * and notifies all {@link SelectionChangedListener}.
      *
      * @param selection the selection
@@ -642,5 +642,5 @@
     /**
      * Adds the primitives in <code>selection</code> to the current selection.
-     * Notifies all {@see SelectionChangedListener} if <code>fireSelectionChangeEvent</code> is true.
+     * Notifies all {@link SelectionChangedListener} if <code>fireSelectionChangeEvent</code> is true.
      *
      * @param selection the selection
@@ -890,8 +890,8 @@
     /**
      * Replies true if there is at least one primitive in this dataset with
-     * {@see OsmPrimitive#isModified()} == <code>true</code>.
+     * {@link OsmPrimitive#isModified()} == <code>true</code>.
      *
      * @return true if there is at least one primitive in this dataset with
-     * {@see OsmPrimitive#isModified()} == <code>true</code>.
+     * {@link OsmPrimitive#isModified()} == <code>true</code>.
      */
     public boolean isModified() {
Index: trunk/src/org/openstreetmap/josm/data/osm/DataSetMerger.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/DataSetMerger.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/DataSetMerger.java	(revision 5266)
@@ -69,5 +69,5 @@
      * If other.id != 0 it tries to merge it with an corresponding primitive from
      * my dataset with the same id. If this is not possible a conflict is remembered
-     * in {@see #conflicts}.
+     * in {@link #conflicts}.
      *
      * If other.id == 0 it tries to find a primitive in my dataset with id == 0 which
@@ -370,8 +370,8 @@
 
     /**
-     * Runs the merge operation. Successfully merged {@see OsmPrimitive}s are in
-     * {@see #getMyDataSet()}.
-     *
-     * See {@see #getConflicts()} for a map of conflicts after the merge operation.
+     * Runs the merge operation. Successfully merged {@link OsmPrimitive}s are in
+     * {@link #getMyDataSet()}.
+     *
+     * See {@link #getConflicts()} for a map of conflicts after the merge operation.
      */
     public void merge() {
@@ -380,8 +380,8 @@
 
     /**
-     * Runs the merge operation. Successfully merged {@see OsmPrimitive}s are in
-     * {@see #getMyDataSet()}.
-     *
-     * See {@see #getConflicts()} for a map of conflicts after the merge operation.
+     * Runs the merge operation. Successfully merged {@link OsmPrimitive}s are in
+     * {@link #getMyDataSet()}.
+     *
+     * See {@link #getConflicts()} for a map of conflicts after the merge operation.
      */
     public void merge(ProgressMonitor progressMonitor) {
Index: trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java	(revision 5266)
@@ -90,6 +90,6 @@
 
     /**
-     * Replies the sub-collection of {@see OsmPrimitive}s of type <code>type</code> present in
-     * another collection of {@see OsmPrimitive}s. The result collection is a list.
+     * Replies the sub-collection of {@link OsmPrimitive}s of type <code>type</code> present in
+     * another collection of {@link OsmPrimitive}s. The result collection is a list.
      *
      * If <code>list</code> is null, replies an empty list.
@@ -112,6 +112,6 @@
 
     /**
-     * Replies the sub-collection of {@see OsmPrimitive}s of type <code>type</code> present in
-     * another collection of {@see OsmPrimitive}s. The result collection is a set.
+     * Replies the sub-collection of {@link OsmPrimitive}s of type <code>type</code> present in
+     * another collection of {@link OsmPrimitive}s. The result collection is a set.
      *
      * If <code>list</code> is null, replies an empty set.
@@ -363,5 +363,5 @@
      * of calling this method.
      *
-     * <strong>Caution</strong>: Do not use this method on primitives which are already added to a {@see DataSet}.
+     * <strong>Caution</strong>: Do not use this method on primitives which are already added to a {@link DataSet}.
      *
      * @throws DataIntegrityProblemException If primitive was already added to the dataset
Index: trunk/src/org/openstreetmap/josm/data/osm/Relation.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/Relation.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/Relation.java	(revision 5266)
@@ -378,8 +378,8 @@
 
     /**
-     * Replies the set of  {@see OsmPrimitive}s referred to by at least one
+     * Replies the set of  {@link OsmPrimitive}s referred to by at least one
      * member of this relation
      *
-     * @return the set of  {@see OsmPrimitive}s referred to by at least one
+     * @return the set of  {@link OsmPrimitive}s referred to by at least one
      * member of this relation
      */
Index: trunk/src/org/openstreetmap/josm/data/osm/RelationToChildReference.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/RelationToChildReference.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/RelationToChildReference.java	(revision 5266)
@@ -9,8 +9,8 @@
 
     /**
-     * Replies a set of all {@see RelationToChildReference}s for a given child primitive.
+     * Replies a set of all {@link RelationToChildReference}s for a given child primitive.
      *
      * @param child the child primitive
-     * @return  a set of all {@see RelationToChildReference}s for a given child primitive
+     * @return  a set of all {@link RelationToChildReference}s for a given child primitive
      */
     static public Set<RelationToChildReference> getRelationToChildReferences(OsmPrimitive child) {
@@ -28,8 +28,8 @@
 
     /**
-     * Replies a set of all {@see RelationToChildReference}s for a collection of child primitives
+     * Replies a set of all {@link RelationToChildReference}s for a collection of child primitives
      *
      * @param children the collection of child primitives
-     * @return  a set of all {@see RelationToChildReference}s to the children in the collection of child
+     * @return  a set of all {@link RelationToChildReference}s to the children in the collection of child
      * primitives
      */
Index: trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java	(revision 5266)
@@ -20,19 +20,19 @@
 /**
  * TagCollection is a collection of tags which can be used to manipulate
- * tags managed by {@see OsmPrimitive}s.
+ * tags managed by {@link OsmPrimitive}s.
  *
  * A TagCollection can be created:
  * <ul>
- *  <li>from the tags managed by a specific {@see OsmPrimitive} with {@see #from(OsmPrimitive)}</li>
- *  <li>from the union of all tags managed by a collection of {@see OsmPrimitive}s with {@see #unionOfAllPrimitives(Collection)}</li>
- *  <li>from the union of all tags managed by a {@see DataSet} with {@see #unionOfAllPrimitives(DataSet)}</li>
- *  <li>from the intersection of all tags managed by a collection of primitives with {@see #commonToAllPrimitives(Collection)}</li>
+ *  <li>from the tags managed by a specific {@link OsmPrimitive} with {@link #from(OsmPrimitive)}</li>
+ *  <li>from the union of all tags managed by a collection of {@link OsmPrimitive}s with {@link #unionOfAllPrimitives(Collection)}</li>
+ *  <li>from the union of all tags managed by a {@link DataSet} with {@link #unionOfAllPrimitives(DataSet)}</li>
+ *  <li>from the intersection of all tags managed by a collection of primitives with {@link #commonToAllPrimitives(Collection)}</li>
  * </ul>
  *
- * It  provides methods to query the collection, like {@see #size()}, {@see #hasTagsFor(String)}, etc.
+ * It  provides methods to query the collection, like {@link #size()}, {@link #hasTagsFor(String)}, etc.
  *
  * Basic set operations allow to create the union, the intersection and  the difference
- * of tag collections, see {@see #union(TagCollection)}, {@see #intersect(TagCollection)},
- * and {@see #minus(TagCollection)}.
+ * of tag collections, see {@link #union(TagCollection)}, {@link #intersect(TagCollection)},
+ * and {@link #minus(TagCollection)}.
  *
  *
@@ -42,10 +42,10 @@
     /**
      * Creates a tag collection from the tags managed by a specific
-     * {@see OsmPrimitive}. If <code>primitive</code> is null, replies
+     * {@link OsmPrimitive}. If <code>primitive</code> is null, replies
      * an empty tag collection.
      *
      * @param primitive  the primitive
      * @return a tag collection with the tags managed by a specific
-     * {@see OsmPrimitive}
+     * {@link OsmPrimitive}
      */
     public static TagCollection from(Tagged primitive) {
@@ -578,5 +578,5 @@
 
     /**
-     * Applies this tag collection to an {@see OsmPrimitive}. Does nothing if
+     * Applies this tag collection to an {@link OsmPrimitive}. Does nothing if
      * primitive is null
      *
@@ -599,5 +599,5 @@
 
     /**
-     * Applies this tag collection to a collection of {@see OsmPrimitive}s. Does nothing if
+     * Applies this tag collection to a collection of {@link OsmPrimitive}s. Does nothing if
      * primitives is null
      *
@@ -616,5 +616,5 @@
 
     /**
-     * Replaces the tags of an {@see OsmPrimitive} by the tags in this collection . Does nothing if
+     * Replaces the tags of an {@link OsmPrimitive} by the tags in this collection . Does nothing if
      * primitive is null
      *
@@ -634,5 +634,5 @@
 
     /**
-     * Replaces the tags of a collection of{@see OsmPrimitive}s by the tags in this collection.
+     * Replaces the tags of a collection of{@link OsmPrimitive}s by the tags in this collection.
      * Does nothing if primitives is null
      *
Index: trunk/src/org/openstreetmap/josm/data/osm/Way.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/Way.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/Way.java	(revision 5266)
@@ -109,5 +109,5 @@
      * @return  the node at position <code>index</code>
      * @exception IndexOutOfBoundsException thrown if <code>index</code> < 0
-     * or <code>index</code> >= {@see #getNodesCount()}
+     * or <code>index</code> >= {@link #getNodesCount()}
      * @since 1862
      */
Index: trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSet.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSet.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSet.java	(revision 5266)
@@ -148,5 +148,5 @@
 
     /**
-     * merges the histories from the {@see HistoryDataSet} other in this history data set
+     * merges the histories from the {@link HistoryDataSet} other in this history data set
      *
      * @param other the other history data set. Ignored if null.
Index: trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSetListener.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSetListener.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSetListener.java	(revision 5266)
@@ -6,5 +6,5 @@
 public interface HistoryDataSetListener {
     /**
-     * Fired by a {@see HistoryDataSet} if the cached history of an OSM primitive with
+     * Fired by a {@link HistoryDataSet} if the cached history of an OSM primitive with
      * id <code>id</code> is updated
      *
@@ -15,5 +15,5 @@
 
     /**
-     * Fired by a {@see HistoryDataSet} if the history cached is cleared.
+     * Fired by a {@link HistoryDataSet} if the history cached is cleared.
      *
      * @param source the history data set firing the event
Index: trunk/src/org/openstreetmap/josm/data/osm/history/HistoryOsmPrimitive.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/history/HistoryOsmPrimitive.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/history/HistoryOsmPrimitive.java	(revision 5266)
@@ -219,5 +219,5 @@
         if (!(obj instanceof HistoryOsmPrimitive))
             return false;
-        // equal semantics is valid for subclasses like {@see HistoryOsmNode} etc. too.
+        // equal semantics is valid for subclasses like {@link HistoryOsmNode} etc. too.
         // So, don't enforce equality of class.
         //
Index: trunk/src/org/openstreetmap/josm/data/osm/history/HistoryRelation.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/history/HistoryRelation.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/history/HistoryRelation.java	(revision 5266)
@@ -98,5 +98,5 @@
 
     /**
-     * replies the type, i.e. {@see OsmPrimitiveType#RELATION}
+     * replies the type, i.e. {@link OsmPrimitiveType#RELATION}
      *
      */
Index: trunk/src/org/openstreetmap/josm/data/osm/history/HistoryWay.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/history/HistoryWay.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/history/HistoryWay.java	(revision 5266)
@@ -66,5 +66,5 @@
 
     /**
-     * replies the ways type, i.e. {@see OsmPrimitiveType#WAY}
+     * replies the ways type, i.e. {@link OsmPrimitiveType#WAY}
      *
      * @return the ways type
Index: trunk/src/org/openstreetmap/josm/data/osm/visitor/MergeSourceBuildingVisitor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/visitor/MergeSourceBuildingVisitor.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/osm/visitor/MergeSourceBuildingVisitor.java	(revision 5266)
@@ -20,11 +20,11 @@
 
 /**
- * MergeSourceBuildingVisitor helps to build the "hull" of a collection of {@see OsmPrimitive}s
+ * MergeSourceBuildingVisitor helps to build the "hull" of a collection of {@link OsmPrimitive}s
  * which shall be merged into another layer. The "hull" is slightly bigger than the original
  * collection. It includes, for instance the nodes of a way in the original collection even though
  * these nodes might not be present explicitly in the original collection. The "hull" also includes
- * incomplete {@see OsmPrimitive}s which are referred to by relations in the original collection. And
- * it turns {@see OsmPrimitive} referred to by {@see Relation}s in the original collection into
- * incomplete {@see OsmPrimitive}s in the "hull", if they are not themselves present in the
+ * incomplete {@link OsmPrimitive}s which are referred to by relations in the original collection. And
+ * it turns {@link OsmPrimitive} referred to by {@link Relation}s in the original collection into
+ * incomplete {@link OsmPrimitive}s in the "hull", if they are not themselves present in the
  * original collection.
  *
@@ -38,5 +38,5 @@
      * Creates the visitor. The visitor starts to build the "hull" from
      * the currently selected primitives in the dataset <code>selectionBase</code>,
-     * i.e. from {@see DataSet#getSelected()}.
+     * i.e. from {@link DataSet#getSelected()}.
      *
      * @param selectionBase the dataset. Must not be null.
Index: trunk/src/org/openstreetmap/josm/data/projection/Projection.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/projection/Projection.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/data/projection/Projection.java	(revision 5266)
@@ -14,5 +14,5 @@
 public interface Projection {
     /**
-     * The default scale factor in east/north units per pixel ({@see #NavigatableComponent#scale}))
+     * The default scale factor in east/north units per pixel ({@link #NavigatableComponent#scale}))
      * FIXME: misnomer
      */
Index: trunk/src/org/openstreetmap/josm/gui/ConditionalOptionPaneUtil.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/ConditionalOptionPaneUtil.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/ConditionalOptionPaneUtil.java	(revision 5266)
@@ -20,6 +20,6 @@
  * which can be enabled/disabled by the user.
  *
- * They wrap the methods provided by {@see JOptionPane}. Within JOSM you should use these
- * methods rather than the bare methods from {@see JOptionPane} because the methods provided
+ * They wrap the methods provided by {@link JOptionPane}. Within JOSM you should use these
+ * methods rather than the bare methods from {@link JOptionPane} because the methods provided
  * by ConditionalOptionPaneUtil ensure that a dialog window is always on top and isn't hidden by one of the
  * JOSM windows for detached dialogs, relation editors, history browser and the like.
@@ -81,8 +81,8 @@
      * relation editors, history browsers and the like.
      *
-     * Set <code>optionType</code> to {@see JOptionPane#YES_NO_OPTION} for a dialog with a YES and
+     * Set <code>optionType</code> to {@link JOptionPane#YES_NO_OPTION} for a dialog with a YES and
      * a NO button.
 
-     * Set <code>optionType</code> to {@see JOptionPane#YES_NO_CANCEL_OPTION} for a dialog with a YES,
+     * Set <code>optionType</code> to {@link JOptionPane#YES_NO_CANCEL_OPTION} for a dialog with a YES,
      * a NO and a CANCEL button
      *
@@ -100,5 +100,5 @@
      * @param defaultOption the default option
      *
-     * @return the option selected by user. {@see JOptionPane#CLOSED_OPTION} if the dialog was closed.
+     * @return the option selected by user. {@link JOptionPane#CLOSED_OPTION} if the dialog was closed.
      */
     static public int showOptionDialog(String preferenceKey, Component parent, Object message, String title, int optionType, int messageType, Object [] options, Object defaultOption) throws HeadlessException {
@@ -121,8 +121,8 @@
      * relation editors, history browsers and the like.
      *
-     * Set <code>optionType</code> to {@see JOptionPane#YES_NO_OPTION} for a dialog with a YES and
+     * Set <code>optionType</code> to {@link JOptionPane#YES_NO_OPTION} for a dialog with a YES and
      * a NO button.
 
-     * Set <code>optionType</code> to {@see JOptionPane#YES_NO_CANCEL_OPTION} for a dialog with a YES,
+     * Set <code>optionType</code> to {@link JOptionPane#YES_NO_CANCEL_OPTION} for a dialog with a YES,
      * a NO and a CANCEL button
      *
@@ -191,5 +191,5 @@
      * This is a message panel used in dialogs which can be enabled/disabled with a preference
      * setting.
-     * In addition to the normal message any {@see JOptionPane} would display it includes
+     * In addition to the normal message any {@link JOptionPane} would display it includes
      * a checkbox for enabling/disabling this particular dialog.
      *
Index: trunk/src/org/openstreetmap/josm/gui/DefaultNameFormatter.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/DefaultNameFormatter.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/DefaultNameFormatter.java	(revision 5266)
@@ -41,5 +41,5 @@
 
 /**
- * This is the default implementation of a {@see NameFormatter} for names of {@see OsmPrimitive}s.
+ * This is the default implementation of a {@link NameFormatter} for names of {@link OsmPrimitive}s.
  *
  */
@@ -100,5 +100,5 @@
      * <ul>
      *   <li>by the tag names in the preference <tt>relation.nameOrder</tt></li>
-     *   <li>by the default tags in {@see #DEFAULT_NAMING_TAGS_FOR_RELATIONS}
+     *   <li>by the default tags in {@link #DEFAULT_NAMING_TAGS_FOR_RELATIONS}
      * </ul>
      *
@@ -524,5 +524,5 @@
      * <tt>osm-primitives.showid</tt> is set.
      *
-     * The id is append to the {@see StringBuilder} passed in in <code>name</code>.
+     * The id is append to the {@link StringBuilder} passed in in <code>name</code>.
      *
      * @param name  the name without the id
@@ -605,5 +605,5 @@
 
     /**
-     * Formats a name for a {@see HistoryRelation})
+     * Formats a name for a {@link HistoryRelation})
      *
      * @param relation the relation
Index: trunk/src/org/openstreetmap/josm/gui/ExceptionDialogUtil.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/ExceptionDialogUtil.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/ExceptionDialogUtil.java	(revision 5266)
@@ -91,5 +91,5 @@
 
     /**
-     * Explains a {@see SecurityException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link SecurityException} which has caused an {@link OsmTransferException}.
      * This is most likely happening when user tries to access the OSM API from within an
      * applet which wasn't loaded from the API server.
@@ -109,5 +109,5 @@
 
     /**
-     * Explains a {@see SocketException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link SocketException} which has caused an {@link OsmTransferException}.
      * This is most likely because there's not connection to the Internet or because
      * the remote server is not reachable.
@@ -127,5 +127,5 @@
 
     /**
-     * Explains a {@see IOException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link IOException} which has caused an {@link OsmTransferException}.
      * This is most likely happening when the communication with the remote server is
      * interrupted for any reason.
@@ -145,5 +145,5 @@
 
     /**
-     * Explains a {@see IllegalDataException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link IllegalDataException} which has caused an {@link OsmTransferException}.
      * This is most likely happening when JOSM tries to load data in in an unsupported format.
      *
@@ -162,5 +162,5 @@
 
     /**
-     * Explains a {@see InvocationTargetException }
+     * Explains a {@link InvocationTargetException }
      *
      * @param e the exception
@@ -178,5 +178,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because of an internal server
+     * Explains a {@link OsmApiException} which was thrown because of an internal server
      * error in the OSM API server.
      *
@@ -195,5 +195,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because of a bad
+     * Explains a {@link OsmApiException} which was thrown because of a bad
      * request
      *
@@ -211,5 +211,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because a resource wasn't found
+     * Explains a {@link OsmApiException} which was thrown because a resource wasn't found
      * on the server
      *
@@ -227,5 +227,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because of a conflict
+     * Explains a {@link OsmApiException} which was thrown because of a conflict
      *
      * @param e the exception
@@ -242,5 +242,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because the authentication at
+     * Explains a {@link OsmApiException} which was thrown because the authentication at
      * the OSM server failed
      *
@@ -266,5 +266,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because accessing a protected
+     * Explains a {@link OsmApiException} which was thrown because accessing a protected
      * resource was forbidden.
      *
@@ -283,5 +283,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because of a
+     * Explains a {@link OsmApiException} which was thrown because of a
      * client timeout (HTTP 408)
      *
@@ -299,5 +299,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because of a
+     * Explains a {@link OsmApiException} which was thrown because of a
      * bandwidth limit (HTTP 509)
      *
@@ -315,5 +315,5 @@
 
     /**
-     * Explains a {@see OsmApiException} with a generic error
+     * Explains a {@link OsmApiException} with a generic error
      * message.
      *
@@ -331,5 +331,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because accessing a protected
+     * Explains a {@link OsmApiException} which was thrown because accessing a protected
      * resource was forbidden.
      *
@@ -347,5 +347,5 @@
 
     /**
-     * Explains a {@see UnknownHostException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link UnknownHostException} which has caused an {@link OsmTransferException}.
      * This is most likely happening when there is an error in the API URL or when
      * local DNS services are not working.
@@ -387,7 +387,7 @@
 
     /**
-     * Explains an {@see OsmTransferException} to the user.
-     *
-     * @param e the {@see OsmTransferException}
+     * Explains an {@link OsmTransferException} to the user.
+     *
+     * @param e the {@link OsmTransferException}
      */
     public static void explainOsmTransferException(OsmTransferException e) {
@@ -470,6 +470,6 @@
     /**
      * explains the case of an error due to a delete request on an already deleted
-     * {@see OsmPrimitive}, i.e. a HTTP response code 410, where we don't know which
-     * {@see OsmPrimitive} is causing the error.
+     * {@link OsmPrimitive}, i.e. a HTTP response code 410, where we don't know which
+     * {@link OsmPrimitive} is causing the error.
      *
      * @param e the exception
@@ -486,7 +486,7 @@
 
     /**
-     * Explains an {@see Exception} to the user.
-     *
-     * @param e the {@see Exception}
+     * Explains an {@link Exception} to the user.
+     *
+     * @param e the {@link Exception}
      */
     public static void explainException(Exception e) {
Index: trunk/src/org/openstreetmap/josm/gui/ExtendedDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/ExtendedDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/ExtendedDialog.java	(revision 5266)
@@ -97,5 +97,5 @@
     /**
      * set to true if the content of the extended dialog should
-     * be placed in a {@see JScrollPane}
+     * be placed in a {@link JScrollPane}
      */
     private boolean placeContentInScrollPane;
Index: trunk/src/org/openstreetmap/josm/gui/HelpAwareOptionPane.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/HelpAwareOptionPane.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/HelpAwareOptionPane.java	(revision 5266)
@@ -134,5 +134,5 @@
      * @param msg the message
      * @param title the title
-     * @param messageType the message type (see {@see JOptionPane})
+     * @param messageType the message type (see {@link JOptionPane})
      * @param icon the icon to display. Can be null.
      * @param options the list of options to display. Can be null.
Index: trunk/src/org/openstreetmap/josm/gui/JosmUserIdentityManager.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/JosmUserIdentityManager.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/JosmUserIdentityManager.java	(revision 5266)
@@ -31,8 +31,8 @@
  * of the current user.
  *
- * The global JosmUserStateManager listens to {@see PreferenceChangeEvent}s and keeps track
+ * The global JosmUserStateManager listens to {@link PreferenceChangeEvent}s and keeps track
  * of what the current JOSM instance knows about the current user. Other subsystems can
  * let the global JosmUserStateManager know in case they fully identify the current user, see
- * {@see #setFullyIdentified(String, long)}.
+ * {@link #setFullyIdentified(String, long)}.
  *
  * The information kept by the JosmUserStateManager can be used to
@@ -138,5 +138,5 @@
 
     /**
-     * Replies the user name of the current JOSM user. null, if {@see #isAnonymous()} is true.
+     * Replies the user name of the current JOSM user. null, if {@link #isAnonymous()} is true.
      *
      * @return  the user name of the current JOSM user
@@ -147,6 +147,6 @@
 
     /**
-     * Replies the user id of the current JOSM user. 0, if {@see #isAnonymous()} or
-     * {@see #isPartiallyIdentified()} is true.
+     * Replies the user id of the current JOSM user. 0, if {@link #isAnonymous()} or
+     * {@link #isPartiallyIdentified()} is true.
      *
      * @return  the user id of the current JOSM user
@@ -159,5 +159,5 @@
     /**
      * Replies verified additional information about the current user if the user is
-     * {@see #isFullyIdentified()}.
+     * {@link #isFullyIdentified()}.
      *
      * @return verified additional information about the current user
@@ -167,5 +167,5 @@
     }
     /**
-     * Initializes the user identity manager from values in the {@see org.openstreetmap.josm.data.Preferences}
+     * Initializes the user identity manager from values in the {@link org.openstreetmap.josm.data.Preferences}
      */
     public void initFromPreferences() {
Index: trunk/src/org/openstreetmap/josm/gui/MapView.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/MapView.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/MapView.java	(revision 5266)
@@ -323,5 +323,5 @@
      * rules:
      * <ul>
-     *   <li>if there is at least one {@see OsmDataLayer} the first one
+     *   <li>if there is at least one {@link OsmDataLayer} the first one
      *     becomes active</li>
      *   <li>otherwise, the top most layer of any type becomes active</li>
@@ -700,5 +700,5 @@
     /**
      * Sets the active layer to <code>layer</code>. If <code>layer</code> is an instance
-     * of {@see OsmDataLayer} also sets {@see #editLayer} to <code>layer</code>.
+     * of {@link OsmDataLayer} also sets {@link #editLayer} to <code>layer</code>.
      *
      * @param layer the layer to be activate; must be one of the layers in the list of layers
Index: trunk/src/org/openstreetmap/josm/gui/bbox/BBoxChooser.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/bbox/BBoxChooser.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/bbox/BBoxChooser.java	(revision 5266)
@@ -12,5 +12,5 @@
 
     /**
-     * A BBoxChooser emits {@see ProperyChangeEvent}s for this property
+     * A BBoxChooser emits {@link ProperyChangeEvent}s for this property
      * if the current bounding box changes.
      */
Index: trunk/src/org/openstreetmap/josm/gui/bbox/TileSelectionBBoxChooser.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/bbox/TileSelectionBBoxChooser.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/bbox/TileSelectionBBoxChooser.java	(revision 5266)
@@ -187,5 +187,5 @@
     /**
      * Listens to changes in the selected tile bounds, refreshes the map view and emits
-     * property change events for {@see BBoxChooser#BBOX_PROP}
+     * property change events for {@link BBoxChooser#BBOX_PROP}
      */
     class TileBoundsChangeListener implements PropertyChangeListener {
@@ -203,5 +203,5 @@
      * A panel for describing a rectangular area of OSM tiles at a given zoom level.
      *
-     * The panel emits PropertyChangeEvents for the property {@see TileGridInputPanel#TILE_BOUNDS_PROP}
+     * The panel emits PropertyChangeEvents for the property {@link TileGridInputPanel#TILE_BOUNDS_PROP}
      * when the user successfully enters a valid tile grid specification.
      *
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/ComparePairType.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/ComparePairType.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/ComparePairType.java	(revision 5266)
@@ -13,15 +13,15 @@
 
     /**
-     * compare my version of an {@see OsmPrimitive} with their version
+     * compare my version of an {@link OsmPrimitive} with their version
      */
     MY_WITH_THEIR (tr("My with Their"), new ListRole[] {MY_ENTRIES, THEIR_ENTRIES}),
 
     /**
-     * compare my version of an {@see OsmPrimitive} with the merged version
+     * compare my version of an {@link OsmPrimitive} with the merged version
      */
     MY_WITH_MERGED (tr("My with Merged"),  new ListRole[] {MY_ENTRIES, MERGED_ENTRIES}),
 
     /**
-     * compare their version of an {@see OsmPrimitive} with the merged veresion
+     * compare their version of an {@link OsmPrimitive} with the merged veresion
      */
     THEIR_WITH_MERGED(tr("Their with Merged"),  new ListRole[] {THEIR_ENTRIES, MERGED_ENTRIES});
@@ -61,5 +61,5 @@
 
     /**
-     * replies the pair of {@see ListRole}s participating in this comparison
+     * replies the pair of {@link ListRole}s participating in this comparison
      * pair
      *
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/ConflictResolver.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/ConflictResolver.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/ConflictResolver.java	(revision 5266)
@@ -35,13 +35,13 @@
 
 /**
- * An UI component for resolving conflicts between two {@see OsmPrimitive}s.
+ * An UI component for resolving conflicts between two {@link OsmPrimitive}s.
  *
- * This component emits {@see PropertyChangeEvent}s for three properties:
+ * This component emits {@link PropertyChangeEvent}s for three properties:
  * <ul>
- *   <li>{@see #RESOLVED_COMPLETELY_PROP} - new value is <code>true</code>, if the conflict is
+ *   <li>{@link #RESOLVED_COMPLETELY_PROP} - new value is <code>true</code>, if the conflict is
  *   completely resolved</li>
- *   <li>{@see #MY_PRIMITIVE_PROP} - new value is the {@see OsmPrimitive} in the role of
+ *   <li>{@link #MY_PRIMITIVE_PROP} - new value is the {@link OsmPrimitive} in the role of
  *   my primitive</li>
- *   <li>{@see #THEIR_PRIMITIVE_PROP} - new value is the {@see OsmPrimitive} in the role of
+ *   <li>{@link #THEIR_PRIMITIVE_PROP} - new value is the {@link OsmPrimitive} in the role of
  *   their primitive</li>
  * </ul>
@@ -54,14 +54,14 @@
     /* -------------------------------------------------------------------------------------- */
     /** name of the property indicating whether all conflicts are resolved,
-     *  {@see #isResolvedCompletely()}
+     *  {@link #isResolvedCompletely()}
      */
     static public final String RESOLVED_COMPLETELY_PROP = ConflictResolver.class.getName() + ".resolvedCompletely";
     /**
-     * name of the property for the {@see OsmPrimitive} in the role "my"
+     * name of the property for the {@link OsmPrimitive} in the role "my"
      */
     static public final String MY_PRIMITIVE_PROP = ConflictResolver.class.getName() + ".myPrimitive";
 
     /**
-     * name of the property for the {@see OsmPrimitive} in the role "my"
+     * name of the property for the {@link OsmPrimitive} in the role "my"
      */
     static public final String THEIR_PRIMITIVE_PROP = ConflictResolver.class.getName() + ".theirPrimitive";
@@ -136,5 +136,5 @@
 
     /**
-     * Sets the {@see OsmPrimitive} in the role "my"
+     * Sets the {@link OsmPrimitive} in the role "my"
      *
      * @param my the primitive in the role "my"
@@ -149,5 +149,5 @@
 
     /**
-     * Sets the {@see OsmPrimitive} in the role "their".
+     * Sets the {@link OsmPrimitive} in the role "their".
      *
      * @param their the primitive in the role "their"
@@ -284,5 +284,5 @@
 
     /**
-     * Updates the state of the property {@see #RESOLVED_COMPLETELY_PROP}
+     * Updates the state of the property {@link #RESOLVED_COMPLETELY_PROP}
      *
      */
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMergeModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMergeModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMergeModel.java	(revision 5266)
@@ -39,23 +39,23 @@
  * </ol>
  *
- * A ListMergeModel is a factory for three {@see TableModel}s and three {@see ListSelectionModel}s:
+ * A ListMergeModel is a factory for three {@link TableModel}s and three {@link ListSelectionModel}s:
  * <ol>
- *   <li>the table model and the list selection for for a  {@see JTable} which shows my entries.
- *    See {@see #getMyTableModel()}</li> and {@see ListMergeModel#getMySelectionModel()}</li>
+ *   <li>the table model and the list selection for for a  {@link JTable} which shows my entries.
+ *    See {@link #getMyTableModel()}</li> and {@link ListMergeModel#getMySelectionModel()}</li>
  *   <li>dito for their entries and merged entries</li>
  * </ol>
  *
  * A ListMergeModel can be ''frozen''. If it's frozen, it doesn't accept additional merge
- * decisions. {@see PropertyChangeListener}s can register for property value changes of
- * {@see #PROP_FROZEN}.
+ * decisions. {@link PropertyChangeListener}s can register for property value changes of
+ * {@link #PROP_FROZEN}.
  *
  * ListMergeModel is an abstract class. Three methods have to be implemented by subclasses:
  * <ul>
- *   <li>{@see ListMergeModel#cloneEntryForMergedList(Object)} - clones an entry of type T</li>
- *   <li>{@see ListMergeModel#isEqualEntry(Object, Object)} - checks whether two entries are equals </li>
- *   <li>{@see ListMergeModel#setValueAt(DefaultTableModel, Object, int, int)} - handles values edited in
- *     a JTable, dispatched from {@see TableModel#setValueAt(Object, int, int)} </li>
+ *   <li>{@link ListMergeModel#cloneEntryForMergedList(Object)} - clones an entry of type T</li>
+ *   <li>{@link ListMergeModel#isEqualEntry(Object, Object)} - checks whether two entries are equals </li>
+ *   <li>{@link ListMergeModel#setValueAt(DefaultTableModel, Object, int, int)} - handles values edited in
+ *     a JTable, dispatched from {@link TableModel#setValueAt(Object, int, int)} </li>
  * </ul>
- * A ListMergeModel is used in combination with a {@see ListMerger}.
+ * A ListMergeModel is used in combination with a {@link ListMerger}.
  *
  * @param <T>  the type of the list entries
@@ -101,5 +101,5 @@
 
     /**
-     * Handles method dispatches from {@see TableModel#setValueAt(Object, int, int)}.
+     * Handles method dispatches from {@link TableModel#setValueAt(Object, int, int)}.
      *
      * @param model the table model
@@ -545,8 +545,8 @@
 
     /**
-     * This an adapter between a {@see JTable} and one of the three entry lists
-     * in the role {@see ListRole} managed by the {@see ListMergeModel}.
-     *
-     * From the point of view of the {@see JTable} it is a {@see TableModel}.
+     * This an adapter between a {@link JTable} and one of the three entry lists
+     * in the role {@link ListRole} managed by the {@link ListMergeModel}.
+     *
+     * From the point of view of the {@link JTable} it is a {@link TableModel}.
      *
      * @param <T>
@@ -595,9 +595,9 @@
 
         /**
-         * replies true if the {@see ListRole} of this {@see EntriesTableModel}
-         * participates in the current {@see ComparePairType}
+         * replies true if the {@link ListRole} of this {@link EntriesTableModel}
+         * participates in the current {@link ComparePairType}
          *
-         * @return true, if the if the {@see ListRole} of this {@see EntriesTableModel}
-         * participates in the current {@see ComparePairType}
+         * @return true, if the if the {@link ListRole} of this {@link EntriesTableModel}
+         * participates in the current {@link ComparePairType}
          *
          * @see ComparePairListModel#getSelectedComparePair()
@@ -611,11 +611,11 @@
         /**
          * replies true if the entry at <code>row</code> is equal to the entry at the
-         * same position in the opposite list of the current {@see ComparePairType}.
+         * same position in the opposite list of the current {@link ComparePairType}.
          *
          * @param row  the row number
          * @return true if the entry at <code>row</code> is equal to the entry at the
-         * same position in the opposite list of the current {@see ComparePairType}
+         * same position in the opposite list of the current {@link ComparePairType}
          * @exception IllegalStateException thrown, if this model is not participating in the
-         *   current  {@see ComparePairType}
+         *   current  {@link ComparePairType}
          * @see ComparePairType#getOppositeRole(ListRole)
          * @see #getRole()
@@ -635,11 +635,11 @@
         /**
          * replies true if the entry at the current position is present in the opposite list
-         * of the current {@see ComparePairType}.
+         * of the current {@link ComparePairType}.
          *
          * @param row the current row
          * @return true if the entry at the current position is present in the opposite list
-         * of the current {@see ComparePairType}.
+         * of the current {@link ComparePairType}.
          * @exception IllegalStateException thrown, if this model is not participating in the
-         *   current  {@see ComparePairType}
+         *   current  {@link ComparePairType}
          * @see ComparePairType#getOppositeRole(ListRole)
          * @see #getRole()
@@ -663,5 +663,5 @@
 
         /**
-         * replies the opposite list of entries with respect to the current {@see ComparePairType}
+         * replies the opposite list of entries with respect to the current {@link ComparePairType}
          *
          * @return the opposite list of entries
@@ -678,6 +678,6 @@
 
     /**
-     * This is the selection model to be used in a {@see JTable} which displays
-     * an entry list managed by {@see ListMergeModel}.
+     * This is the selection model to be used in a {@link JTable} which displays
+     * an entry list managed by {@link ListMergeModel}.
      *
      * The model ensures that only rows displaying an entry in the entry list
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java	(revision 5266)
@@ -882,5 +882,5 @@
     /**
      * Synchronizes scrollbar adjustments between a set of
-     * {@see Adjustable}s. Whenever the adjustment of one of
+     * {@link Adjustable}s. Whenever the adjustment of one of
      * the registerd Adjustables is updated the adjustment of
      * the other registered Adjustables is adjusted too.
@@ -901,5 +901,5 @@
 
         /**
-         * registers an {@see Adjustable} for participation in synchronized
+         * registers an {@link Adjustable} for participation in synchronized
          * scrolling.
          *
@@ -917,5 +917,5 @@
 
         /**
-         * event handler for {@see AdjustmentEvent}s
+         * event handler for {@link AdjustmentEvent}s
          *
          */
@@ -960,10 +960,10 @@
 
         /**
-         * wires a {@see JCheckBox} to  the adjustment synchronizer, in such a way  that:
+         * wires a {@link JCheckBox} to  the adjustment synchronizer, in such a way  that:
          * <li>
          *   <ol>state changes in the checkbox control whether the adjustable participates
          *      in synchronized adjustment</ol>
-         *   <ol>state changes in this {@see AdjustmentSynchronizer} are reflected in the
-         *      {@see JCheckBox}</ol>
+         *   <ol>state changes in this {@link AdjustmentSynchronizer} are reflected in the
+         *      {@link JCheckBox}</ol>
          * </li>
          *
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListRole.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListRole.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListRole.java	(revision 5266)
@@ -3,5 +3,5 @@
 
 /**
- * Enumeration of roles entry lists play in {@see ListMergeModel}
+ * Enumeration of roles entry lists play in {@link ListMergeModel}
  */
 public enum ListRole {
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMergeModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMergeModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMergeModel.java	(revision 5266)
@@ -22,5 +22,5 @@
 
     /**
-     * Populates the model with the nodes in the two {@see Way}s <code>my</code> and
+     * Populates the model with the nodes in the two {@link Way}s <code>my</code> and
      * <code>their</code>.
      *
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMerger.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMerger.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMerger.java	(revision 5266)
@@ -13,5 +13,5 @@
 
 /**
- * A UI component for resolving conflicts in the node lists of two {@see Way}s.
+ * A UI component for resolving conflicts in the node lists of two {@link Way}s.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListTableCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListTableCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListTableCellRenderer.java	(revision 5266)
@@ -22,5 +22,5 @@
 
 /**
- * This is the {@see TableCellRenderer} used in the node tables of {@see NodeListMerger}.
+ * This is the {@link TableCellRenderer} used in the node tables of {@link NodeListMerger}.
  *
  */
@@ -40,5 +40,5 @@
 
     /**
-     * build the tool tip text for an {@see OsmPrimitive}. It consist of the formatted
+     * build the tool tip text for an {@link OsmPrimitive}. It consist of the formatted
      * key/value pairs for this primitive.
      *
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMergeModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMergeModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMergeModel.java	(revision 5266)
@@ -23,12 +23,12 @@
 /**
  * This is the model for resolving conflicts in the properties of the
- * {@see OsmPrimitive}s. In particular, it represents conflicts in the coordinates of {@see Node}s and
- * the deleted or visible state of {@see OsmPrimitive}s.
+ * {@link OsmPrimitive}s. In particular, it represents conflicts in the coordinates of {@link Node}s and
+ * the deleted or visible state of {@link OsmPrimitive}s.
  *
- * This model is an {@see Observable}. It notifies registered {@see Observer}s whenever the
+ * This model is an {@link Observable}. It notifies registered {@link Observer}s whenever the
  * internal state changes.
  *
- * This model also emits property changes for {@see #RESOLVED_COMPLETELY_PROP}. Property change
- * listeners may register themselves using {@see #addPropertyChangeListener(PropertyChangeListener)}.
+ * This model also emits property changes for {@link #RESOLVED_COMPLETELY_PROP}. Property change
+ * listeners may register themselves using {@link #addPropertyChangeListener(PropertyChangeListener)}.
  *
  * @see Node#getCoor()
@@ -150,9 +150,9 @@
 
     /**
-     * replies the coordinates of my {@see OsmPrimitive}. null, if my primitive hasn't
-     * coordinates (i.e. because it is a {@see Way}).
-     *
-     * @return the coordinates of my {@see OsmPrimitive}. null, if my primitive hasn't
-     *  coordinates (i.e. because it is a {@see Way}).
+     * replies the coordinates of my {@link OsmPrimitive}. null, if my primitive hasn't
+     * coordinates (i.e. because it is a {@link Way}).
+     *
+     * @return the coordinates of my {@link OsmPrimitive}. null, if my primitive hasn't
+     *  coordinates (i.e. because it is a {@link Way}).
      */
     public LatLon getMyCoords() {
@@ -161,9 +161,9 @@
 
     /**
-     * replies the coordinates of their {@see OsmPrimitive}. null, if their primitive hasn't
-     * coordinates (i.e. because it is a {@see Way}).
-     *
-     * @return the coordinates of my {@see OsmPrimitive}. null, if my primitive hasn't
-     * coordinates (i.e. because it is a {@see Way}).
+     * replies the coordinates of their {@link OsmPrimitive}. null, if their primitive hasn't
+     * coordinates (i.e. because it is a {@link Way}).
+     *
+     * @return the coordinates of my {@link OsmPrimitive}. null, if my primitive hasn't
+     * coordinates (i.e. because it is a {@link Way}).
      */
     public LatLon getTheirCoords() {
@@ -172,9 +172,9 @@
 
     /**
-     * replies the coordinates of the merged {@see OsmPrimitive}. null, if the current primitives
-     * have no coordinates or if the conflict is yet {@see MergeDecisionType#UNDECIDED}
-     *
-     * @return the coordinates of the merged {@see OsmPrimitive}. null, if the current primitives
-     * have no coordinates or if the conflict is yet {@see MergeDecisionType#UNDECIDED}
+     * replies the coordinates of the merged {@link OsmPrimitive}. null, if the current primitives
+     * have no coordinates or if the conflict is yet {@link MergeDecisionType#UNDECIDED}
+     *
+     * @return the coordinates of the merged {@link OsmPrimitive}. null, if the current primitives
+     * have no coordinates or if the conflict is yet {@link MergeDecisionType#UNDECIDED}
      */
     public LatLon getMergedCoords() {
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMerger.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMerger.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMerger.java	(revision 5266)
@@ -31,5 +31,5 @@
 /**
  * This class represents a UI component for resolving conflicts in some properties
- * of {@see OsmPrimitive}.
+ * of {@link OsmPrimitive}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberMerger.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberMerger.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberMerger.java	(revision 5266)
@@ -13,5 +13,5 @@
 
 /**
- * A UI component for resolving conflicts in the member lists of two {@see Relation}
+ * A UI component for resolving conflicts in the member lists of two {@link Relation}
  */
 public class RelationMemberMerger extends ListMerger<RelationMember> implements IConflictResolver {
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberTableCellEditor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberTableCellEditor.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberTableCellEditor.java	(revision 5266)
@@ -14,5 +14,5 @@
 
 /**
- * {@see TableCellEditor} for the role column in a table for {@see RelationMember}s.
+ * {@link TableCellEditor} for the role column in a table for {@link RelationMember}s.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberTableCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberTableCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberTableCellRenderer.java	(revision 5266)
@@ -22,5 +22,5 @@
 
 /**
- * This is the {@see TableCellRenderer} used in the tables of {@see RelationMemberMerger}.
+ * This is the {@link TableCellRenderer} used in the tables of {@link RelationMemberMerger}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeModel.java	(revision 5266)
@@ -17,14 +17,14 @@
 
 /**
- * This is the {@see TableModel} used in the tables of the {@see TagMerger}.
- *
- * The model can {@see #populate(OsmPrimitive, OsmPrimitive)} itself from the conflicts
- * in the tag sets of two {@see OsmPrimitive}s. Internally, it keeps a list of {@see TagMergeItem}s.
- *
- *  {@see #decide(int, MergeDecisionType)} and {@see #decide(int[], MergeDecisionType)} can be used
+ * This is the {@link TableModel} used in the tables of the {@link TagMerger}.
+ *
+ * The model can {@link #populate(OsmPrimitive, OsmPrimitive)} itself from the conflicts
+ * in the tag sets of two {@link OsmPrimitive}s. Internally, it keeps a list of {@link TagMergeItem}s.
+ *
+ *  {@link #decide(int, MergeDecisionType)} and {@link #decide(int[], MergeDecisionType)} can be used
  *  to remember a merge decision for a specific row in the model.
  *
- *  The model notifies {@see PropertyChangeListener}s about updates of the number of
- *  undecided tags (see {@see #PROP_NUM_UNDECIDED_TAGS}).
+ *  The model notifies {@link PropertyChangeListener}s about updates of the number of
+ *  undecided tags (see {@link #PROP_NUM_UNDECIDED_TAGS}).
  *
  */
@@ -62,5 +62,5 @@
 
     /**
-     * notifies {@see PropertyChangeListener}s about an update of {@see TagMergeModel#PROP_NUM_UNDECIDED_TAGS}
+     * notifies {@link PropertyChangeListener}s about an update of {@link TagMergeModel#PROP_NUM_UNDECIDED_TAGS}
 
      * @param oldValue the old value
@@ -78,5 +78,5 @@
     /**
      * refreshes the number of undecided tag conflicts after an update in the list of
-     * {@see TagMergeItem}s. Notifies {@see PropertyChangeListener} if necessary.
+     * {@link TagMergeItem}s. Notifies {@link PropertyChangeListener} if necessary.
      *
      */
@@ -96,5 +96,5 @@
     /**
      * Populate the model with conflicts between the tag sets of the two
-     * {@see OsmPrimitive} <code>my</code> and <code>their</code>.
+     * {@link OsmPrimitive} <code>my</code> and <code>their</code>.
      *
      * @param my  my primitive (i.e. the primitive from the local dataset)
@@ -121,5 +121,5 @@
 
     /**
-     * add a {@see TagMergeItem} to the model
+     * add a {@link TagMergeItem} to the model
      *
      * @param item the item
@@ -139,5 +139,5 @@
 
     /**
-     * set the merge decision of the {@see TagMergeItem} in row <code>row</code>
+     * set the merge decision of the {@link TagMergeItem} in row <code>row</code>
      * to <code>decision</code>.
      *
@@ -152,5 +152,5 @@
 
     /**
-     * set the merge decision of all {@see TagMergeItem} given by indices in <code>rows</code>
+     * set the merge decision of all {@link TagMergeItem} given by indices in <code>rows</code>
      * to <code>decision</code>.
      *
Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMerger.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMerger.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMerger.java	(revision 5266)
@@ -32,5 +32,5 @@
 import org.openstreetmap.josm.tools.ImageProvider;
 /**
- * UI component for resolving conflicts in the tag sets of two {@see OsmPrimitive}s.
+ * UI component for resolving conflicts in the tag sets of two {@link OsmPrimitive}s.
  *
  */
@@ -46,5 +46,5 @@
 
     /**
-     * embeds table in a new {@see JScrollPane} and returns th scroll pane
+     * embeds table in a new {@link JScrollPane} and returns th scroll pane
      *
      * @param table the table
@@ -322,5 +322,5 @@
     /**
      * Synchronizes scrollbar adjustments between a set of
-     * {@see Adjustable}s. Whenever the adjustment of one of
+     * {@link Adjustable}s. Whenever the adjustment of one of
      * the registerd Adjustables is updated the adjustment of
      * the other registered Adjustables is adjusted too.
@@ -385,5 +385,5 @@
     /**
      * Sets the currently selected tags in the table of merged tags to state
-     * {@see MergeDecisionType#UNDECIDED}
+     * {@link MergeDecisionType#UNDECIDED}
      *
      */
Index: trunk/src/org/openstreetmap/josm/gui/conflict/tags/CombinePrimitiveResolverDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/tags/CombinePrimitiveResolverDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/tags/CombinePrimitiveResolverDialog.java	(revision 5266)
@@ -61,9 +61,9 @@
  *
  * There is a singleton instance of this dialog which can be retrieved using
- * {@see #getInstance()}.
+ * {@link #getInstance()}.
  *
  * The dialog uses two models: one  for resolving tag conflicts, the other
  * for resolving conflicts in relation memberships. For both models there are accessors,
- * i.e {@see #getTagConflictResolverModel()} and {@see #getRelationMemberConflictResolverModel()}.
+ * i.e {@link #getTagConflictResolverModel()} and {@link #getRelationMemberConflictResolverModel()}.
  *
  * Models have to be <strong>populated</strong> before the dialog is launched. Example:
@@ -76,10 +76,10 @@
  *
  * You should also set the target primitive which other primitives (ways or nodes) are
- * merged to, see {@see #setTargetPrimitive(OsmPrimitive)}.
- *
- * After the dialog is closed use {@see #isCanceled()} to check whether the user canceled
- * the dialog. If it wasn't canceled you may build a collection of {@see Command} objects
+ * merged to, see {@link #setTargetPrimitive(OsmPrimitive)}.
+ *
+ * After the dialog is closed use {@link #isCanceled()} to check whether the user canceled
+ * the dialog. If it wasn't canceled you may build a collection of {@link Command} objects
  * which reflect the conflict resolution decisions the user made in the dialog:
- * see {@see #buildResolutionCommands()}
+ * see {@link #buildResolutionCommands()}
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellEditor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellEditor.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellEditor.java	(revision 5266)
@@ -27,8 +27,8 @@
  *
  * The editor responds intercepts some keys and interprets them as navigation keys. It
- * forwards navigation events to {@see NavigationListener}s registred with this editor.
- * You should register the parent table using this editor as {@see NavigationListener}.
+ * forwards navigation events to {@link NavigationListener}s registred with this editor.
+ * You should register the parent table using this editor as {@link NavigationListener}.
  *
- * {@see KeyEvent#VK_ENTER} and {@see KeyEvent#VK_TAB} trigger a {@see NavigationListener#gotoNextDecision()}.
+ * {@link KeyEvent#VK_ENTER} and {@link KeyEvent#VK_TAB} trigger a {@link NavigationListener#gotoNextDecision()}.
  */
 public class MultiValueCellEditor extends AbstractCellEditor implements TableCellEditor{
Index: trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellRenderer.java	(revision 5266)
@@ -20,5 +20,5 @@
 
 /**
- * This is a {@see TableCellRenderer} for {@see MultiValueResolutionDecision}s.
+ * This is a {@link TableCellRenderer} for {@link MultiValueResolutionDecision}s.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueResolutionDecision.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueResolutionDecision.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueResolutionDecision.java	(revision 5266)
@@ -27,5 +27,5 @@
     /** the collection of tags for which a decision is needed */
     private TagCollection  tags;
-    /** the selected value if {@see #type} is {@see MultiValueDecisionType#KEEP_ONE} */
+    /** the selected value if {@link #type} is {@link MultiValueDecisionType#KEEP_ONE} */
     private String value;
 
@@ -201,5 +201,5 @@
 
     /**
-     * Applies the resolution to an {@see OsmPrimitive}
+     * Applies the resolution to an {@link OsmPrimitive}
      *
      * @param primitive the primitive
Index: trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictResolverModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictResolverModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictResolverModel.java	(revision 5266)
@@ -23,5 +23,5 @@
  * This model manages a list of conflicting relation members.
  *
- * It can be used as {@see TableModel}.
+ * It can be used as {@link TableModel}.
  *
  *
@@ -152,5 +152,5 @@
     /**
      * Populates the model with the relation members represented as a collection of
-     * {@see RelationToChildReference}s.
+     * {@link RelationToChildReference}s.
      *
      * @param references the references. Empty list assumed if null.
@@ -252,5 +252,5 @@
      *
      * @param newPrimitive the primitive which members shall refer to if the
-     * decision is {@see RelationMemberConflictDecisionType#REPLACE}
+     * decision is {@link RelationMemberConflictDecisionType#REPLACE}
      * @return a list of commands
      */
@@ -291,5 +291,5 @@
      *
      * @param newPrimitive the primitive which members shall refer to if the
-     * decision is {@see RelationMemberConflictDecisionType#REPLACE}
+     * decision is {@link RelationMemberConflictDecisionType#REPLACE}
      *
      * @return the set of relations which have to be modified according
Index: trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolver.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolver.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolver.java	(revision 5266)
@@ -20,5 +20,5 @@
 /**
  * This is a UI widget for resolving tag conflicts, i.e. differences of the tag values
- * of multiple {@see OsmPrimitive}s.
+ * of multiple {@link OsmPrimitive}s.
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolverModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolverModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolverModel.java	(revision 5266)
@@ -165,7 +165,7 @@
 
     /**
-     * Replies true if each {@see MultiValueResolutionDecision} is decided.
-     *
-     * @return true if each {@see MultiValueResolutionDecision} is decided; false
+     * Replies true if each {@link MultiValueResolutionDecision} is decided.
+     *
+     * @return true if each {@link MultiValueResolutionDecision} is decided; false
      * otherwise
      */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictDialog.java	(revision 5266)
@@ -50,5 +50,5 @@
 
 /**
- * This dialog displays the {@see ConflictCollection} of the active {@see OsmDataLayer} in a toggle
+ * This dialog displays the {@link ConflictCollection} of the active {@link OsmDataLayer} in a toggle
  * dialog on the right of the main frame.
  *
@@ -273,5 +273,5 @@
 
     /**
-     * The {@see ListModel} for conflicts
+     * The {@link ListModel} for conflicts
      *
      */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictResolutionDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictResolutionDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictResolutionDialog.java	(revision 5266)
@@ -34,5 +34,5 @@
 
 /**
- * This is an extended dialog for resolving conflict between {@see OsmPrimitive}s.
+ * This is an extended dialog for resolving conflict between {@link OsmPrimitive}s.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/LayerListDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/LayerListDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/LayerListDialog.java	(revision 5266)
@@ -321,9 +321,9 @@
     /**
      * Wires <code>listener</code> to <code>listSelectionModel</code> in such a way, that
-     * <code>listener</code> receives a {@see IEnabledStateUpdating#updateEnabledState()}
-     * on every {@see ListSelectionEvent}.
+     * <code>listener</code> receives a {@link IEnabledStateUpdating#updateEnabledState()}
+     * on every {@link ListSelectionEvent}.
      *
      * @param listener  the listener
-     * @param listSelectionModel  the source emitting {@see ListSelectionEvent}s
+     * @param listSelectionModel  the source emitting {@link ListSelectionEvent}s
      */
     protected void adaptTo(final IEnabledStateUpdating listener, ListSelectionModel listSelectionModel) {
@@ -340,9 +340,9 @@
     /**
      * Wires <code>listener</code> to <code>listModel</code> in such a way, that
-     * <code>listener</code> receives a {@see IEnabledStateUpdating#updateEnabledState()}
-     * on every {@see ListDataEvent}.
+     * <code>listener</code> receives a {@link IEnabledStateUpdating#updateEnabledState()}
+     * on every {@link ListDataEvent}.
      *
      * @param listener  the listener
-     * @param listSelectionModel  the source emitting {@see ListDataEvent}s
+     * @param listSelectionModel  the source emitting {@link ListDataEvent}s
      */
     protected void adaptTo(final IEnabledStateUpdating listener, LayerListModel listModel) {
@@ -375,5 +375,5 @@
     public final class DeleteLayerAction extends AbstractAction implements IEnabledStateUpdating, LayerAction {
         /**
-         * Creates a {@see DeleteLayerAction} which will delete the currently
+         * Creates a {@link DeleteLayerAction} which will delete the currently
          * selected layers in the layer dialog.
          *
@@ -456,5 +456,5 @@
 
         /**
-         * Creates a {@see ShowHideLayerAction} which will toggle the visibility of
+         * Creates a {@link ShowHideLayerAction} which will toggle the visibility of
          * the currently selected layers
          *
@@ -546,5 +546,5 @@
 
         /**
-         * Creates a {@see LayerOpacityAction} which allows to chenge the
+         * Creates a {@link LayerOpacityAction} which allows to chenge the
          * opacity of one or more layers.
          *
@@ -561,5 +561,5 @@
 
         /**
-         * Creates a {@see ShowHideLayerAction} which will toggle the visibility of
+         * Creates a {@link ShowHideLayerAction} which will toggle the visibility of
          * the currently selected layers
          *
@@ -1099,5 +1099,5 @@
 
     /**
-     * Observer interface to be implemented by views using {@see LayerListModel}
+     * Observer interface to be implemented by views using {@link LayerListModel}
      *
      */
@@ -1111,13 +1111,13 @@
      * moving layers up and down, for toggling their visibility, and for activating a layer.
      *
-     * The model is a {@see TableModel} and it provides a {@see ListSelectionModel}. It expects
-     * to be configured with a {@see DefaultListSelectionModel}. The selection model is used
+     * The model is a {@link TableModel} and it provides a {@link ListSelectionModel}. It expects
+     * to be configured with a {@link DefaultListSelectionModel}. The selection model is used
      * to update the selection state of views depending on messages sent to the model.
      *
-     * The model manages a list of {@see LayerListModelListener} which are mainly notified if
+     * The model manages a list of {@link LayerListModelListener} which are mainly notified if
      * the model requires views to make a specific list entry visible.
      *
-     * It also listens to {@see PropertyChangeEvent}s of every {@see Layer} it manages, in particular to
-     * the properties {@see Layer#VISIBLE_PROP} and {@see Layer#NAME_PROP}.
+     * It also listens to {@link PropertyChangeEvent}s of every {@link Layer} it manages, in particular to
+     * the properties {@link Layer#VISIBLE_PROP} and {@link Layer#NAME_PROP}.
      */
     public class LayerListModel extends AbstractTableModel implements MapView.LayerChangeListener, PropertyChangeListener {
@@ -1182,5 +1182,5 @@
         /**
          * Populates the model with the current layers managed by
-         * {@see MapView}.
+         * {@link MapView}.
          *
          */
@@ -1246,5 +1246,5 @@
 
         /**
-         * Invoked if a layer managed by {@see MapView} is removed
+         * Invoked if a layer managed by {@link MapView} is removed
          *
          * @param layer the layer which is removed
@@ -1265,5 +1265,5 @@
 
         /**
-         * Invoked when a layer managed by {@see MapView} is added
+         * Invoked when a layer managed by {@link MapView} is added
          *
          * @param layer the layer
@@ -1406,8 +1406,8 @@
 
         /**
-         * Replies the list of layers currently managed by {@see MapView}.
+         * Replies the list of layers currently managed by {@link MapView}.
          * Never null, but can be empty.
          *
-         * @return the list of layers currently managed by {@see MapView}.
+         * @return the list of layers currently managed by {@link MapView}.
          * Never null, but can be empty.
          */
@@ -1563,6 +1563,6 @@
 
     /**
-     * Creates a {@see ShowHideLayerAction} for <code>layer</code> in the
-     * context of this {@see LayerListDialog}.
+     * Creates a {@link ShowHideLayerAction} for <code>layer</code> in the
+     * context of this {@link LayerListDialog}.
      *
      * @param layer the layer
@@ -1576,6 +1576,6 @@
 
     /**
-     * Creates a {@see DeleteLayerAction} for <code>layer</code> in the
-     * context of this {@see LayerListDialog}.
+     * Creates a {@link DeleteLayerAction} for <code>layer</code> in the
+     * context of this {@link LayerListDialog}.
      *
      * @param layer the layer
@@ -1588,6 +1588,6 @@
 
     /**
-     * Creates a {@see ActivateLayerAction} for <code>layer</code> in the
-     * context of this {@see LayerListDialog}.
+     * Creates a {@link ActivateLayerAction} for <code>layer</code> in the
+     * context of this {@link LayerListDialog}.
      *
      * @param layer the layer
@@ -1599,6 +1599,6 @@
 
     /**
-     * Creates a {@see MergeLayerAction} for <code>layer</code> in the
-     * context of this {@see LayerListDialog}.
+     * Creates a {@link MergeLayerAction} for <code>layer</code> in the
+     * context of this {@link LayerListDialog}.
      *
      * @param layer the layer
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java	(revision 5266)
@@ -183,5 +183,5 @@
     /**
      * Initializes the relation list dialog from a layer. If <code>layer</code> is null
-     * or if it isn't an {@see OsmDataLayer} the dialog is reset to an empty dialog.
+     * or if it isn't an {@link OsmDataLayer} the dialog is reset to an empty dialog.
      * Otherwise it is initialized with the list of non-deleted and visible relations
      * in the layer's dataset.
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/SelectionListDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/SelectionListDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/SelectionListDialog.java	(revision 5266)
@@ -440,5 +440,5 @@
      * The list model for the list of OSM primitives in the current JOSM selection.
      *
-     * The model also maintains a history of the last {@see SelectionListModel#SELECTION_HISTORY_SIZE}
+     * The model also maintains a history of the last {@link SelectionListModel#SELECTION_HISTORY_SIZE}
      * JOSM selection.
      *
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java	(revision 5266)
@@ -187,5 +187,5 @@
      * The action to toggle the visibility state of this toggle dialog.
      *
-     * Emits {@see PropertyChangeEvent}s for the property <tt>selected</tt>:
+     * Emits {@link PropertyChangeEvent}s for the property <tt>selected</tt>:
      * <ul>
      *   <li>true, if the dialog is currently visible</li>
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java	(revision 5266)
@@ -535,5 +535,5 @@
 
     /**
-     * Task for fixing a collection of {@see TestError}s. Can be run asynchronously.
+     * Task for fixing a collection of {@link TestError}s. Can be run asynchronously.
      *
      *
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerModel.java	(revision 5266)
@@ -48,5 +48,5 @@
     /**
      * Sets the changeset currently displayed in the detail view. Fires a property change event
-     * for the property {@see #CHANGESET_IN_DETAIL_VIEW_PROP} if necessary.
+     * for the property {@link #CHANGESET_IN_DETAIL_VIEW_PROP} if necessary.
      *
      * @param cs the changeset currently displayed in the detail view.
@@ -118,5 +118,5 @@
      * Selects the changeset displayed at row <code>row</code>
      *
-     * @param row the row. Ignored if < 0 or >= {@see #getRowCount()}
+     * @param row the row. Ignored if < 0 or >= {@link #getRowCount()}
      */
     public void setSelectedByIdx(int row) {
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentDownloadTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentDownloadTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentDownloadTask.java	(revision 5266)
@@ -87,5 +87,5 @@
      * Creates a download task for a single changeset
      *
-     * @param parent the parent component for the {@see PleaseWaitDialog}. Must not be null.
+     * @param parent the parent component for the {@link PleaseWaitDialog}. Must not be null.
      * @param changesetId the changeset id. >0 required.
      * @throws IllegalArgumentException thrown if changesetId <= 0
@@ -103,5 +103,5 @@
      * the collection are sillently discarded.
      *
-     * @param parent the parent component for the {@see PleaseWaitDialog}. Must not be null.
+     * @param parent the parent component for the {@link PleaseWaitDialog}. Must not be null.
      * @param changesetIds the changeset ids. Empty collection assumed, if null.
      * @throws IllegalArgumentException thrown if parent is null
@@ -113,9 +113,9 @@
 
     /**
-     * Replies true if the local {@see ChangesetCache} already includes the changeset with
+     * Replies true if the local {@link ChangesetCache} already includes the changeset with
      * id <code>changesetId</code>.
      *
      * @param changesetId the changeset id
-     * @return true if the local {@see ChangesetCache} already includes the changeset with
+     * @return true if the local {@link ChangesetCache} already includes the changeset with
      * id <code>changesetId</code>
      */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentPanel.java	(revision 5266)
@@ -57,5 +57,5 @@
  * The panel which displays the content of a changeset in a scollable table.
  *
- * It listens to property change events for {@see ChangesetCacheManagerModel#CHANGESET_IN_DETAIL_VIEW_PROP}
+ * It listens to property change events for {@link ChangesetCacheManagerModel#CHANGESET_IN_DETAIL_VIEW_PROP}
  * and updates its view accordingly.
  *
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableCellRenderer.java	(revision 5266)
@@ -16,5 +16,5 @@
 /**
  * The table cell renderer used in the changeset content table, except for the "name"
- * column in which we use a {@see OsmPrimitivRenderer}.
+ * column in which we use a {@link OsmPrimitivRenderer}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableModel.java	(revision 5266)
@@ -131,6 +131,6 @@
 
     /**
-     * The type used internally to keep information about {@see HistoryOsmPrimitive}
-     * with their {@see ChangesetModificationType}.
+     * The type used internally to keep information about {@link HistoryOsmPrimitive}
+     * with their {@link ChangesetModificationType}.
      *
      */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDetailPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDetailPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDetailPanel.java	(revision 5266)
@@ -44,5 +44,5 @@
 /**
  * This panel displays the properties of the currently selected changeset in the
- * {@see ChangesetCacheManager}.
+ * {@link ChangesetCacheManager}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java	(revision 5266)
@@ -31,5 +31,5 @@
  *
  * The  task only downloads the changeset properties without the changeset content. It
- * updates the global {@see ChangesetCache}.
+ * updates the global {@link ChangesetCache}.
  *
  */
@@ -39,5 +39,5 @@
      * Builds a download task from for a collection of changesets.
      *
-     * Ignores null values and changesets with {@see Changeset#isNew()} == true.
+     * Ignores null values and changesets with {@link Changeset#isNew()} == true.
      *
      * @param changesets the collection of changesets. Assumes an empty collection if null.
@@ -51,7 +51,7 @@
      * Builds a download task from for a collection of changesets.
      *
-     * Ignores null values and changesets with {@see Changeset#isNew()} == true.
-     *
-     * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed.
+     * Ignores null values and changesets with {@link Changeset#isNew()} == true.
+     *
+     * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed.
      * Must not be null.
      * @param changesets the collection of changesets. Assumes an empty collection if null.
@@ -101,6 +101,6 @@
 
     /**
-     * Creates the download task for a collection of changeset ids. Uses a {@see PleaseWaitDialog}
-     * whose parent is {@see Main#parent}.
+     * Creates the download task for a collection of changeset ids. Uses a {@link PleaseWaitDialog}
+     * whose parent is {@link Main#parent}.
      *
      * Null ids or or ids <= 0 in the id collection are ignored.
@@ -115,10 +115,10 @@
 
     /**
-     * Creates the download task for a collection of changeset ids. Uses a {@see PleaseWaitDialog}
+     * Creates the download task for a collection of changeset ids. Uses a {@link PleaseWaitDialog}
      * whose parent is the parent window of <code>dialogParent</code>.
      *
      * Null ids or or ids <= 0 in the id collection are ignored.
      *
-     * @param dialogParent the parent reference component for the {@see PleaseWaitDialog}. Must not be null.
+     * @param dialogParent the parent reference component for the {@link PleaseWaitDialog}. Must not be null.
      * @param ids the collection of ids. Empty collection assumed if null.
      * @throws IllegalArgumentException thrown if dialogParent is null
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetTagsPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetTagsPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetTagsPanel.java	(revision 5266)
@@ -15,5 +15,5 @@
 
 /**
- * This panel displays the tags of the currently selected changeset in the {@see ChangesetCacheManager}
+ * This panel displays the tags of the currently selected changeset in the {@link ChangesetCacheManager}
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/SingleChangesetDownloadPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/SingleChangesetDownloadPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/SingleChangesetDownloadPanel.java	(revision 5266)
@@ -116,5 +116,5 @@
 
     /**
-     * Validator for a changeset ID entered in a {@see JTextComponent}.
+     * Validator for a changeset ID entered in a {@link JTextComponent}.
      *
      */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java	(revision 5266)
@@ -960,5 +960,5 @@
 
     /**
-     * Validator for user ids entered in in a {@see JTextComponent}.
+     * Validator for user ids entered in in a {@link JTextComponent}.
      *
      */
@@ -1036,5 +1036,5 @@
 
     /**
-     * Validates dates entered as text in in a {@see JTextComponent}. Validates the input
+     * Validates dates entered as text in in a {@link JTextComponent}. Validates the input
      * on the fly and gives feedback about whether the date is valid or not.
      *
@@ -1099,5 +1099,5 @@
 
     /**
-     * Validates time values entered as text in in a {@see JTextComponent}. Validates the input
+     * Validates time values entered as text in in a {@link JTextComponent}. Validates the input
      * on the fly and gives feedback about whether the time value is valid or not.
      *
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/ChangesetQueryTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/ChangesetQueryTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/ChangesetQueryTask.java	(revision 5266)
@@ -62,5 +62,5 @@
      * Creates the task.
      *
-     * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed.
+     * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed.
      * Must not be null.
      * @param query the query to submit to the OSM server. Must not be null.
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/UrlBasedQueryPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/UrlBasedQueryPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/UrlBasedQueryPanel.java	(revision 5266)
@@ -140,5 +140,5 @@
 
     /**
-     * Replies the {@see ChangesetQuery} specified in this panel. null, if no valid changeset query
+     * Replies the {@link ChangesetQuery} specified in this panel. null, if no valid changeset query
      * is specified.
      *
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java	(revision 5266)
@@ -64,5 +64,5 @@
 
     /**
-     * Replies the {@see OsmDataLayer} this editor is related to
+     * Replies the {@link OsmDataLayer} this editor is related to
      *
      * @return the osm data layer
@@ -113,5 +113,5 @@
      * constructor
      *
-     * @param layer the {@see OsmDataLayer} this browser is related to. Must not be null.
+     * @param layer the {@link OsmDataLayer} this browser is related to. Must not be null.
      * @exception IllegalArgumentException thrown, if layer is null
      */
@@ -126,5 +126,5 @@
      * constructor
      *
-     * @param layer the {@see OsmDataLayer} this browser is related to. Must not be null.
+     * @param layer the {@link OsmDataLayer} this browser is related to. Must not be null.
      * @param root the root relation
      * @exception IllegalArgumentException thrown, if layer is null
@@ -157,5 +157,5 @@
      * replies the parent dialog this browser is embedded in
      *
-     * @return the parent dialog; null, if there is no {@see Dialog} as parent dialog
+     * @return the parent dialog; null, if there is no {@link Dialog} as parent dialog
      */
     protected Dialog getParentDialog() {
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/DownloadRelationTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/DownloadRelationTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/DownloadRelationTask.java	(revision 5266)
@@ -24,5 +24,5 @@
 /**
  * The asynchronous task for fully downloading a collection of relations. Does a full download
- * for each relations and merges the relation into an {@see OsmDataLayer}
+ * for each relations and merges the relation into an {@link OsmDataLayer}
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/GenericRelationEditor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/GenericRelationEditor.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/GenericRelationEditor.java	(revision 5266)
@@ -105,5 +105,5 @@
      * If no relation is given, will create an editor for a new relation.
      *
-     * @param layer the {@see OsmDataLayer} the new or edited relation belongs to
+     * @param layer the {@link OsmDataLayer} the new or edited relation belongs to
      * @param relation relation to edit, or null to create a new one.
      * @param selectedMembers a collection of members which shall be selected initially
@@ -425,5 +425,5 @@
 
     /**
-     * builds the {@see JSplitPane} which divides the editor in an upper and a lower half
+     * builds the {@link JSplitPane} which divides the editor in an upper and a lower half
      *
      * @return the split panel
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableCellRenderer.java	(revision 5266)
@@ -13,5 +13,5 @@
 
 /**
- * This is the {@see TableCellRenderer} used in the tables of {@see RelationMemberMerger}.
+ * This is the {@link TableCellRenderer} used in the tables of {@link RelationMemberMerger}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableModel.java	(revision 5266)
@@ -599,5 +599,5 @@
 
     /**
-     * Selects all mebers which refer to {@see OsmPrimitive}s in the collections
+     * Selects all mebers which refer to {@link OsmPrimitive}s in the collections
      * <code>primitmives</code>. Does nothing is primitives is null.
      *
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ReferringRelationsBrowserModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ReferringRelationsBrowserModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ReferringRelationsBrowserModel.java	(revision 5266)
@@ -69,5 +69,5 @@
 
     /**
-     * Populates the browser with the list of referring relations in the {@see DataSet} ds.
+     * Populates the browser with the list of referring relations in the {@link DataSet} ds.
      *
      * @param ds the data set
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationDialogManager.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationDialogManager.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationDialogManager.java	(revision 5266)
@@ -24,7 +24,7 @@
 
     /**
-     * Replies the singleton {@see RelationDialogManager}
-     *
-     * @return the singleton {@see RelationDialogManager}
+     * Replies the singleton {@link RelationDialogManager}
+     *
+     * @return the singleton {@link RelationDialogManager}
      */
     static public RelationDialogManager getRelationDialogManager() {
@@ -38,5 +38,5 @@
     /**
      * Helper class for keeping the context of a relation editor. A relation editor
-     * is open for a specific relation managed by a specific {@see OsmDataLayer}
+     * is open for a specific relation managed by a specific {@link OsmDataLayer}
      *
      */
@@ -102,5 +102,5 @@
     /**
      * Register the relation editor for a relation managed by a
-     * {@see OsmDataLayer}.
+     * {@link OsmDataLayer}.
      *
      * @param layer the layer
@@ -224,9 +224,9 @@
 
     /**
-     * Replies true, if there is another open {@see RelationEditor} whose
+     * Replies true, if there is another open {@link RelationEditor} whose
      * upper left corner is close to <code>p</code>.
      *
      * @param p  the reference point to check
-     * @return true, if there is another open {@see RelationEditor} whose
+     * @return true, if there is another open {@link RelationEditor} whose
      * upper left corner is close to <code>p</code>.
      */
@@ -245,5 +245,5 @@
 
     /**
-     * Positions a {@see RelationEditor} on the screen. Tries to center it on the
+     * Positions a {@link RelationEditor} on the screen. Tries to center it on the
      * screen. If it hide another instance of an editor at the same position this
      * method tries to reposition <code>editor</code> by moving it slightly down and
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationEditor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationEditor.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationEditor.java	(revision 5266)
@@ -35,5 +35,5 @@
     /**
      * Registers a relation editor class. Depending on the type of relation to be edited
-     * {@see #getEditor(OsmDataLayer, Relation, Collection)} will create an instance of
+     * {@link #getEditor(OsmDataLayer, Relation, Collection)} will create an instance of
      * this class.
      *
@@ -108,5 +108,5 @@
      * Creates a new relation editor
      *
-     * @param layer  the {@see OsmDataLayer} in whose context a relation is edited. Must not be null.
+     * @param layer  the {@link OsmDataLayer} in whose context a relation is edited. Must not be null.
      * @param relation the relation. Can be null if a new relation is to be edited.
      * @param selectedMembers  a collection of members in <code>relation</code> which the editor
@@ -150,5 +150,5 @@
     /**
      * Sets the currently edited relation. Creates a snapshot of the current
-     * state of the relation. See {@see #getRelationSnapshot()}
+     * state of the relation. See {@link #getRelationSnapshot()}
      *
      * @param relation the relation
@@ -165,8 +165,8 @@
 
     /**
-     * Replies the {@see OsmDataLayer} in whose context this relation editor is
+     * Replies the {@link OsmDataLayer} in whose context this relation editor is
      * open
      *
-     * @return the {@see OsmDataLayer} in whose context this relation editor is
+     * @return the {@link OsmDataLayer} in whose context this relation editor is
      * open
      */
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTree.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTree.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTree.java	(revision 5266)
@@ -29,5 +29,5 @@
 
 /**
- * This is a {@see JTree} rendering the hierarchical structure of {@see Relation}s.
+ * This is a {@link JTree} rendering the hierarchical structure of {@link Relation}s.
  *
  * @see RelationTreeModel
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTreeCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTreeCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTreeCellRenderer.java	(revision 5266)
@@ -15,5 +15,5 @@
 
 /**
- * This is the cell renderer used in {@see RelationTree}.
+ * This is the cell renderer used in {@link RelationTree}.
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTreeModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTreeModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTreeModel.java	(revision 5266)
@@ -14,9 +14,9 @@
 
 /**
- * This is a {@see TreeModel} which provides the hierarchical structure of {@see Relation}s
- * to a  {@see JTree}.
+ * This is a {@link TreeModel} which provides the hierarchical structure of {@link Relation}s
+ * to a  {@link JTree}.
  *
- * The model is initialized with a root relation or with a list of {@see RelationMember}s, see
- * {@see #populate(Relation)} and {@see #populate(List)} respectively.
+ * The model is initialized with a root relation or with a list of {@link RelationMember}s, see
+ * {@link #populate(Relation)} and {@link #populate(List)} respectively.
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/SelectionTableCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/SelectionTableCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/SelectionTableCellRenderer.java	(revision 5266)
@@ -15,5 +15,5 @@
 
 /**
- * This is the {@see TableCellRenderer} used in {@see SelectionTable}.
+ * This is the {@link TableCellRenderer} used in {@link SelectionTable}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/help/HelpContentReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/help/HelpContentReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/help/HelpContentReader.java	(revision 5266)
@@ -82,5 +82,5 @@
      * in the internal help browser.
      *
-     * Throws a {@see MissingHelpContentException} if the content read from the stream
+     * Throws a {@link MissingHelpContentException} if the content read from the stream
      * most likely represents a stub help page.
      *
Index: trunk/src/org/openstreetmap/josm/gui/help/HelpUtil.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/help/HelpUtil.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/help/HelpUtil.java	(revision 5266)
@@ -121,5 +121,5 @@
      * </ul>
      *
-     * @param locale the locale. {@see Locale#ENGLISH} assumed, if null.
+     * @param locale the locale. {@link Locale#ENGLISH} assumed, if null.
      * @return the help topic prefix
      * @see #getHelpTopicPrefix(Locale)
@@ -142,5 +142,5 @@
      *
      * @param topic the relative help topic. Home help topic assumed, if null.
-     * @param locale the locale. {@see Locale#ENGLISH} assumed, if null.
+     * @param locale the locale. {@link Locale#ENGLISH} assumed, if null.
      * @return the absolute, localized help topic
      */
@@ -207,5 +207,5 @@
     /**
      * Replies the global help action, if available. Otherwise, creates an instance
-     * of {@see HelpAction}.
+     * of {@link HelpAction}.
      *
      * @return
Index: trunk/src/org/openstreetmap/josm/gui/history/AdjustmentSynchronizer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/AdjustmentSynchronizer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/AdjustmentSynchronizer.java	(revision 5266)
@@ -20,5 +20,5 @@
 /**
  * Synchronizes scrollbar adjustments between a set of
- * {@see Adjustable}s. Whenever the adjustment of one of
+ * {@link Adjustable}s. Whenever the adjustment of one of
  * the registerd Adjustables is updated the adjustment of
  * the other registered Adjustables is adjusted too.
@@ -39,5 +39,5 @@
 
     /**
-     * registers an {@see Adjustable} for participation in synchronized
+     * registers an {@link Adjustable} for participation in synchronized
      * scrolling.
      *
@@ -55,5 +55,5 @@
 
     /**
-     * event handler for {@see AdjustmentEvent}s
+     * event handler for {@link AdjustmentEvent}s
      *
      */
@@ -98,10 +98,10 @@
 
     /**
-     * wires a {@see JCheckBox} to  the adjustment synchronizer, in such a way  that:
+     * wires a {@link JCheckBox} to  the adjustment synchronizer, in such a way  that:
      * <li>
      *   <ol>state changes in the checkbox control whether the adjustable participates
      *      in synchronized adjustment</ol>
-     *   <ol>state changes in this {@see AdjustmentSynchronizer} are reflected in the
-     *      {@see JCheckBox}</ol>
+     *   <ol>state changes in this {@link AdjustmentSynchronizer} are reflected in the
+     *      {@link JCheckBox}</ol>
      * </li>
      *
Index: trunk/src/org/openstreetmap/josm/gui/history/CoordinateInfoViewer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/CoordinateInfoViewer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/CoordinateInfoViewer.java	(revision 5266)
@@ -22,5 +22,5 @@
 /**
  * An UI widget for displaying differences in the coordinates of two
- * {@see HistoryNode}s.
+ * {@link HistoryNode}s.
  *
  */
@@ -163,5 +163,5 @@
     /**
      * A UI widgets which displays the Lan/Lon-coordinates of a
-     * {@see HistoryNode}.
+     * {@link HistoryNode}.
      *
      */
Index: trunk/src/org/openstreetmap/josm/gui/history/DiffTableModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/DiffTableModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/DiffTableModel.java	(revision 5266)
@@ -10,5 +10,5 @@
  * Simple model storing "diff cells" in a list. Could probably have used a DefaultTableModel instead..
  *
- * {@see NodeListDiffTableCellRenderer}
+ * {@link NodeListDiffTableCellRenderer}
  */
 class DiffTableModel extends AbstractTableModel {
Index: trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowser.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowser.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowser.java	(revision 5266)
@@ -17,5 +17,5 @@
 
 /**
- * HistoryBrowser is an UI component which displays history information about an {@see OsmPrimitive}.
+ * HistoryBrowser is an UI component which displays history information about an {@link OsmPrimitive}.
  *
  *
@@ -33,8 +33,8 @@
 
     /**
-     * embedds table in a {@see JScrollPane}
+     * embedds table in a {@link JScrollPane}
      *
      * @param table the table
-     * @return the {@see JScrollPane} with the embedded table
+     * @return the {@link JScrollPane} with the embedded table
      */
     protected JScrollPane embeddInScrollPane(JTable table) {
@@ -61,5 +61,5 @@
     /**
      * creates the panel which shows information about two different versions
-     * of the same {@see OsmPrimitive}.
+     * of the same {@link OsmPrimitive}.
      *
      * @return the panel
@@ -113,5 +113,5 @@
     /**
      * constructor
-     * @param history  the history of an {@see OsmPrimitive}
+     * @param history  the history of an {@link OsmPrimitive}
      */
     public HistoryBrowser(History history) {
@@ -121,5 +121,5 @@
 
     /**
-     * populates the browser with the history of a specific {@see OsmPrimitive}
+     * populates the browser with the history of a specific {@link OsmPrimitive}
      *
      * @param history the history
@@ -147,5 +147,5 @@
 
     /**
-     * replies the {@see History} currently displayed by this browser
+     * replies the {@link History} currently displayed by this browser
      *
      * @return the current history
Index: trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserDialog.java	(revision 5266)
@@ -32,5 +32,5 @@
 /**
  * This is non-modal dialog, always showing on top, which displays history information
- * about a given {@see OsmPrimitive}.
+ * about a given {@link OsmPrimitive}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserModel.java	(revision 5266)
@@ -49,20 +49,20 @@
  * The model state consists of the following elements:
  * <ul>
- *   <li>the {@see History} of a specific {@see OsmPrimitive}</li>
- *   <li>a dedicated version in this {@see History} called the {@see PointInTimeType#REFERENCE_POINT_IN_TIME}</li>
- *   <li>another version in this {@see History} called the {@see PointInTimeType#CURRENT_POINT_IN_TIME}</li>
+ *   <li>the {@link History} of a specific {@link OsmPrimitive}</li>
+ *   <li>a dedicated version in this {@link History} called the {@link PointInTimeType#REFERENCE_POINT_IN_TIME}</li>
+ *   <li>another version in this {@link History} called the {@link PointInTimeType#CURRENT_POINT_IN_TIME}</li>
  * <ul>
- * {@see HistoryBrowser} always compares the {@see PointInTimeType#REFERENCE_POINT_IN_TIME} with the
- * {@see PointInTimeType#CURRENT_POINT_IN_TIME}.
-
- * This model provides various {@see TableModel}s for {@see JTable}s used in {@see HistoryBrowser}, for
+ * {@link HistoryBrowser} always compares the {@link PointInTimeType#REFERENCE_POINT_IN_TIME} with the
+ * {@link PointInTimeType#CURRENT_POINT_IN_TIME}.
+
+ * This model provides various {@link TableModel}s for {@link JTable}s used in {@link HistoryBrowser}, for
  * instance:
  * <ul>
- *  <li>{@see #getTagTableModel(PointInTimeType)} replies a {@see TableModel} for the tags of either of
+ *  <li>{@link #getTagTableModel(PointInTimeType)} replies a {@link TableModel} for the tags of either of
  *   the two selected versions</li>
- *  <li>{@see #getNodeListTableModel(PointInTimeType)} replies a {@see TableModel} for the list of nodes of
- *   the two selected versions (if the current history provides information about a {@see Way}</li>
- *  <li> {@see #getRelationMemberTableModel(PointInTimeType)} replies a {@see TableModel} for the list of relation
- *  members  of the two selected versions (if the current history provides information about a {@see Relation}</li>
+ *  <li>{@link #getNodeListTableModel(PointInTimeType)} replies a {@link TableModel} for the list of nodes of
+ *   the two selected versions (if the current history provides information about a {@link Way}</li>
+ *  <li> {@link #getRelationMemberTableModel(PointInTimeType)} replies a {@link TableModel} for the list of relation
+ *  members  of the two selected versions (if the current history provides information about a {@link Relation}</li>
  *  </ul>
  *
@@ -76,5 +76,5 @@
     /**
      * latest isn't a reference of history. It's a clone of the currently edited
-     * {@see OsmPrimitive} in the current edit layer.
+     * {@link OsmPrimitive} in the current edit layer.
      */
     private HistoryOsmPrimitive latest;
@@ -120,5 +120,5 @@
     /**
      * Replies the current edit layer; null, if there isn't a current edit layer
-     * of type {@see OsmDataLayer}.
+     * of type {@link OsmDataLayer}.
      *
      * @return the current edit layer
@@ -206,5 +206,5 @@
 
     /**
-     * Replies the table model to be used in a {@see JTable} which
+     * Replies the table model to be used in a {@link JTable} which
      * shows the list of versions in this history.
      *
@@ -284,6 +284,6 @@
 
     /**
-     * Sets the {@see HistoryOsmPrimitive} which plays the role of a reference point
-     * in time (see {@see PointInTimeType}).
+     * Sets the {@link HistoryOsmPrimitive} which plays the role of a reference point
+     * in time (see {@link PointInTimeType}).
      *
      * @param reference the reference history primitive. Must not be null.
@@ -314,6 +314,6 @@
 
     /**
-     * Sets the {@see HistoryOsmPrimitive} which plays the role of the current point
-     * in time (see {@see PointInTimeType}).
+     * Sets the {@link HistoryOsmPrimitive} which plays the role of the current point
+     * in time (see {@link PointInTimeType}).
      *
      * @param reference the reference history primitive. Must not be null.
@@ -343,7 +343,7 @@
 
     /**
-     * Replies the history OSM primitive for the {@see PointInTimeType#CURRENT_POINT_IN_TIME}
-     *
-     * @return the history OSM primitive for the {@see PointInTimeType#CURRENT_POINT_IN_TIME} (may be null)
+     * Replies the history OSM primitive for the {@link PointInTimeType#CURRENT_POINT_IN_TIME}
+     *
+     * @return the history OSM primitive for the {@link PointInTimeType#CURRENT_POINT_IN_TIME} (may be null)
      */
     public HistoryOsmPrimitive getCurrentPointInTime() {
@@ -352,7 +352,7 @@
 
     /**
-     * Replies the history OSM primitive for the {@see PointInTimeType#REFERENCE_POINT_IN_TIME}
-     *
-     * @return the history OSM primitive for the {@see PointInTimeType#REFERENCE_POINT_IN_TIME} (may be null)
+     * Replies the history OSM primitive for the {@link PointInTimeType#REFERENCE_POINT_IN_TIME}
+     *
+     * @return the history OSM primitive for the {@link PointInTimeType#REFERENCE_POINT_IN_TIME} (may be null)
      */
     public HistoryOsmPrimitive getReferencePointInTime() {
@@ -538,6 +538,6 @@
 
     /**
-     * The table model for the tags of the version at {@see PointInTimeType#REFERENCE_POINT_IN_TIME}
-     * or {@see PointInTimeType#CURRENT_POINT_IN_TIME}
+     * The table model for the tags of the version at {@link PointInTimeType#REFERENCE_POINT_IN_TIME}
+     * or {@link PointInTimeType#CURRENT_POINT_IN_TIME}
      *
      */
@@ -638,6 +638,6 @@
 
     /**
-     * The table model for the relation members of the version at {@see PointInTimeType#REFERENCE_POINT_IN_TIME}
-     * or {@see PointInTimeType#CURRENT_POINT_IN_TIME}
+     * The table model for the relation members of the version at {@link PointInTimeType#REFERENCE_POINT_IN_TIME}
+     * or {@link PointInTimeType#CURRENT_POINT_IN_TIME}
      *
      */
@@ -865,5 +865,5 @@
 
     /**
-     * Creates a {@see HistoryOsmPrimitive} from a {@see OsmPrimitive}
+     * Creates a {@link HistoryOsmPrimitive} from a {@link OsmPrimitive}
      *
      */
Index: trunk/src/org/openstreetmap/josm/gui/history/HistoryLoadTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/HistoryLoadTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/HistoryLoadTask.java	(revision 5266)
@@ -60,5 +60,5 @@
      * Creates a new task
      *
-     * @param parent the component to be used as reference to find the parent for {@see PleaseWaitDialog}.
+     * @param parent the component to be used as reference to find the parent for {@link PleaseWaitDialog}.
      * Must not be null.
      * @throws IllegalArgumentException thrown if parent is null
Index: trunk/src/org/openstreetmap/josm/gui/history/NodeListTableColumnModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/NodeListTableColumnModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/NodeListTableColumnModel.java	(revision 5266)
@@ -9,5 +9,5 @@
 
 /**
- * The {@see TableColumnModel} for the table with the list of nodes.
+ * The {@link TableColumnModel} for the table with the list of nodes.
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/history/NodeListViewer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/NodeListViewer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/NodeListViewer.java	(revision 5266)
@@ -33,9 +33,9 @@
 /**
  * NodeListViewer is a UI component which displays the node list of two
- * version of a {@see OsmPrimitive} in a {@see History}.
+ * version of a {@link OsmPrimitive} in a {@link History}.
  *
  * <ul>
- *   <li>on the left, it displays the node list for the version at {@see PointInTimeType#REFERENCE_POINT_IN_TIME}</li>
- *   <li>on the right, it displays the node list for the version at {@see PointInTimeType#CURRENT_POINT_IN_TIME}</li>
+ *   <li>on the left, it displays the node list for the version at {@link PointInTimeType#REFERENCE_POINT_IN_TIME}</li>
+ *   <li>on the right, it displays the node list for the version at {@link PointInTimeType#CURRENT_POINT_IN_TIME}</li>
  * </ul>
  *
Index: trunk/src/org/openstreetmap/josm/gui/history/PointInTimeType.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/PointInTimeType.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/PointInTimeType.java	(revision 5266)
@@ -3,5 +3,5 @@
 
 /**
- * PointInTimeType enumerates two points in time in the {@see History} of an {@see OsmPrimitive}.
+ * PointInTimeType enumerates two points in time in the {@link History} of an {@link OsmPrimitive}.
  * @author karl
  *
Index: trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListTableCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListTableCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListTableCellRenderer.java	(revision 5266)
@@ -18,5 +18,5 @@
 
 /**
- * The {@see TableCellRenderer} for a list of relation members in {@see HistoryBrower}
+ * The {@link TableCellRenderer} for a list of relation members in {@link HistoryBrower}
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListViewer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListViewer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListViewer.java	(revision 5266)
@@ -12,9 +12,9 @@
 /**
  * RelationMemberListViewer is a UI component which displays the  list of relation members of two
- * version of a {@see Relation} in a {@see History}.
+ * version of a {@link Relation} in a {@link History}.
  *
  * <ul>
- *   <li>on the left, it displays the list of relation members for the version at {@see PointInTimeType#REFERENCE_POINT_IN_TIME}</li>
- *   <li>on the right, it displays the list of relation members for the version at {@see PointInTimeType#CURRENT_POINT_IN_TIME}</li>
+ *   <li>on the left, it displays the list of relation members for the version at {@link PointInTimeType#REFERENCE_POINT_IN_TIME}</li>
+ *   <li>on the right, it displays the list of relation members for the version at {@link PointInTimeType#CURRENT_POINT_IN_TIME}</li>
  * </ul>
  *
Index: trunk/src/org/openstreetmap/josm/gui/history/RelationMemberTableColumnModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/RelationMemberTableColumnModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/RelationMemberTableColumnModel.java	(revision 5266)
@@ -8,5 +8,5 @@
 
 /**
- * The {@see TableColumnModel} for the table with the list of relation members.
+ * The {@link TableColumnModel} for the table with the list of relation members.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/history/TagInfoViewer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/TagInfoViewer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/TagInfoViewer.java	(revision 5266)
@@ -13,9 +13,9 @@
 /**
  * TagInfoViewer is a UI component which displays the list of tags of two
- * version of a {@see OsmPrimitive} in a {@see History}.
+ * version of a {@link OsmPrimitive} in a {@link History}.
  *
  * <ul>
- *   <li>on the left, it displays the list of tags for the version at {@see PointInTimeType#REFERENCE_POINT_IN_TIME}</li>
- *   <li>on the right, it displays the list of tags for the version at {@see PointInTimeType#CURRENT_POINT_IN_TIME}</li>
+ *   <li>on the left, it displays the list of tags for the version at {@link PointInTimeType#REFERENCE_POINT_IN_TIME}</li>
+ *   <li>on the right, it displays the list of tags for the version at {@link PointInTimeType#CURRENT_POINT_IN_TIME}</li>
  * </ul>
  *
Index: trunk/src/org/openstreetmap/josm/gui/history/TagTableCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/TagTableCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/TagTableCellRenderer.java	(revision 5266)
@@ -14,5 +14,5 @@
 
 /**
- * The {@see TableCellRenderer} for a list of tagsin {@see HistoryBrower}
+ * The {@link TableCellRenderer} for a list of tagsin {@link HistoryBrower}
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/history/TagTableColumnModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/TagTableColumnModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/TagTableColumnModel.java	(revision 5266)
@@ -8,5 +8,5 @@
 
 /**
- * The {@see TableColumnModel} for the table with the list of tags
+ * The {@link TableColumnModel} for the table with the list of tags
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/history/VersionInfoPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/VersionInfoPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/VersionInfoPanel.java	(revision 5266)
@@ -30,5 +30,5 @@
 /**
  * VersionInfoPanel is an UI component which displays the basic properties of a version
- * of a {@see OsmPrimitive}.
+ * of a {@link OsmPrimitive}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/history/VersionTableColumnModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/VersionTableColumnModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/history/VersionTableColumnModel.java	(revision 5266)
@@ -10,5 +10,5 @@
 
 /**
- * The {@see TableColumnModel} for the table with the list of versions
+ * The {@link TableColumnModel} for the table with the list of versions
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/io/AbstractUploadTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/AbstractUploadTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/AbstractUploadTask.java	(revision 5266)
@@ -51,5 +51,5 @@
 
     /**
-     * Synchronizes the local state of an {@see OsmPrimitive} with its state on the
+     * Synchronizes the local state of an {@link OsmPrimitive} with its state on the
      * server. The method uses an individual GET for the primitive.
      *
@@ -71,5 +71,5 @@
      * Synchronizes the local state of the dataset with the state on the server.
      *
-     * Reuses the functionality of {@see UpdateDataAction}.
+     * Reuses the functionality of {@link UpdateDataAction}.
      *
      * @see UpdateDataAction#actionPerformed(ActionEvent)
@@ -81,5 +81,5 @@
 
     /**
-     * Handles the case that a conflict in a specific {@see OsmPrimitive} was detected while
+     * Handles the case that a conflict in a specific {@link OsmPrimitive} was detected while
      * uploading
      *
@@ -147,5 +147,5 @@
     /**
      * Handles the case that a conflict was detected while uploading where we don't
-     * know what {@see OsmPrimitive} actually caused the conflict (for whatever reason)
+     * know what {@link OsmPrimitive} actually caused the conflict (for whatever reason)
      *
      */
@@ -189,5 +189,5 @@
     /**
      * Handles the case that a conflict was detected while uploading where we don't
-     * know what {@see OsmPrimitive} actually caused the conflict (for whatever reason)
+     * know what {@link OsmPrimitive} actually caused the conflict (for whatever reason)
      *
      */
@@ -286,5 +286,5 @@
     /**
      * Handles an error which is caused by a delete request for an already deleted
-     * {@see OsmPrimitive} on the server, i.e. a HTTP response code of 410.
+     * {@link OsmPrimitive} on the server, i.e. a HTTP response code of 410.
      * Note that an <strong>update</strong> on an already deleted object results
      * in a 409, not a 410.
Index: trunk/src/org/openstreetmap/josm/gui/io/ChangesetCellRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/ChangesetCellRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/ChangesetCellRenderer.java	(revision 5266)
@@ -17,5 +17,5 @@
 
 /**
- * A {@see ListCellRenderer} for the list of changesets in the upload dialog.
+ * A {@link ListCellRenderer} for the list of changesets in the upload dialog.
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/io/ChangesetCommentModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/ChangesetCommentModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/ChangesetCommentModel.java	(revision 5266)
@@ -6,5 +6,5 @@
 /**
  * ChangesetCommentModel is an observable model for the changeset comment edited
- * in the {@see UploadDialog}.
+ * in the {@link UploadDialog}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/io/ChangesetManagementPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/ChangesetManagementPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/ChangesetManagementPanel.java	(revision 5266)
@@ -35,13 +35,13 @@
  * upload.
  *
- * It is displayed as one of the configuration panels in the {@see UploadDialog}.
+ * It is displayed as one of the configuration panels in the {@link UploadDialog}.
  *
- * ChangesetManagementPanel is a source for {@see PropertyChangeEvent}s. Clients can listen
+ * ChangesetManagementPanel is a source for {@link PropertyChangeEvent}s. Clients can listen
  * to
  * <ul>
- *   <li>{@see #SELECTED_CHANGESET_PROP}  - the new value in the property change event is
+ *   <li>{@link #SELECTED_CHANGESET_PROP}  - the new value in the property change event is
  *   the changeset selected by the user. The value is null if the user didn't select a
  *   a changeset or if he chosed to use a new changeset.</li>
- *   <li> {@see #CLOSE_CHANGESET_AFTER_UPLOAD} - the new value is a boolean value indicating
+ *   <li> {@link #CLOSE_CHANGESET_AFTER_UPLOAD} - the new value is a boolean value indicating
  *   whether the changeset should be closed after the next upload</li>
  * </ul>
Index: trunk/src/org/openstreetmap/josm/gui/io/DownloadFileTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/DownloadFileTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/DownloadFileTask.java	(revision 5266)
@@ -43,6 +43,6 @@
      * Creates the download task
      *
-     * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed
-     * @param title the title to display in the {@see PleaseWaitDialog}
+     * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed
+     * @param title the title to display in the {@link PleaseWaitDialog}
      * @throws IllegalArgumentException thrown if toUpdate is null
      */
Index: trunk/src/org/openstreetmap/josm/gui/io/FilenameCellEditor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/FilenameCellEditor.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/FilenameCellEditor.java	(revision 5266)
@@ -26,6 +26,6 @@
 
 /**
- * This is a {@see TableCellEditor} for filenames. It provides a text input field and
- * a button for launchinig a {@see JFileChooser}.
+ * This is a {@link TableCellEditor} for filenames. It provides a text input field and
+ * a button for launchinig a {@link JFileChooser}.
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/io/OpenChangesetComboBoxModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/OpenChangesetComboBoxModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/OpenChangesetComboBoxModel.java	(revision 5266)
@@ -14,5 +14,5 @@
 /**
  * A combobox model for the list of open changesets. The model is populated with the list
- * of open changesets kept in the {@see ChangesetCache}.
+ * of open changesets kept in the {@link ChangesetCache}.
  *
  */
@@ -34,5 +34,5 @@
     /**
      * Refreshes the content of the combobox model with the current list of open
-     * changesets from the {@see ChangesetCache}.
+     * changesets from the {@link ChangesetCache}.
      */
     public void refresh() {
Index: trunk/src/org/openstreetmap/josm/gui/io/SaveLayerInfo.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/SaveLayerInfo.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/SaveLayerInfo.java	(revision 5266)
@@ -100,7 +100,7 @@
 
     /**
-     * Replies the file this layer should be saved to, if {@see #isDoSaveToFile()} is true
+     * Replies the file this layer should be saved to, if {@link #isDoSaveToFile()} is true
      *
-     * @return the file this layer should be saved to, if {@see #isDoSaveToFile()} is true
+     * @return the file this layer should be saved to, if {@link #isDoSaveToFile()} is true
      */
     public File getFile() {
@@ -109,5 +109,5 @@
 
     /**
-     * Sets the file this layer should be saved to, if {@see #isDoSaveToFile()} is true
+     * Sets the file this layer should be saved to, if {@link #isDoSaveToFile()} is true
      *
      * @param file the file
@@ -140,9 +140,9 @@
 
     /**
-     * Replies the upload state of {@see #getLayer()}.
+     * Replies the upload state of {@link #getLayer()}.
      * <ul>
-     *   <li>{@see UploadOrSaveState#OK} if {@see #getLayer() was successfully uploaded</li>
-     *   <li>{@see UploadOrSaveState#canceled} if uploading {@see #getLayer() was canceled</li>
-     *   <li>{@see UploadOrSaveState#FAILED} if uploading {@see #getLayer() has failed</li>
+     *   <li>{@link UploadOrSaveState#OK} if {@link #getLayer() was successfully uploaded</li>
+     *   <li>{@link UploadOrSaveState#canceled} if uploading {@link #getLayer() was canceled</li>
+     *   <li>{@link UploadOrSaveState#FAILED} if uploading {@link #getLayer() has failed</li>
      * </ul>
      *
@@ -154,5 +154,5 @@
 
     /**
-     * Sets the upload state for {@see #getLayer()}
+     * Sets the upload state for {@link #getLayer()}
      *
      * @param uploadState the upload state
@@ -163,9 +163,9 @@
 
     /**
-     * Replies the save state of {@see #getLayer()}.
+     * Replies the save state of {@link #getLayer()}.
      * <ul>
-     *   <li>{@see UploadOrSaveState#OK} if {@see #getLayer() was successfully saved to file</li>
-     *   <li>{@see UploadOrSaveState#canceled} if saving {@see #getLayer() was canceled</li>
-     *   <li>{@see UploadOrSaveState#FAILED} if saving {@see #getLayer() has failed</li>
+     *   <li>{@link UploadOrSaveState#OK} if {@link #getLayer() was successfully saved to file</li>
+     *   <li>{@link UploadOrSaveState#canceled} if saving {@link #getLayer() was canceled</li>
+     *   <li>{@link UploadOrSaveState#FAILED} if saving {@link #getLayer() has failed</li>
      * </ul>
      *
@@ -177,5 +177,5 @@
 
     /**
-     * Sets the save state for {@see #getLayer()}
+     * Sets the save state for {@link #getLayer()}
      *
      * @param saveState save the upload state
Index: trunk/src/org/openstreetmap/josm/gui/io/SaveLayerTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/SaveLayerTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/SaveLayerTask.java	(revision 5266)
@@ -10,6 +10,6 @@
 
 /**
- * SaveLayerTask saves the data managed by an {@see OsmDataLayer} to the
- * {@see OsmDataLayer#getAssociatedFile()}.
+ * SaveLayerTask saves the data managed by an {@link OsmDataLayer} to the
+ * {@link OsmDataLayer#getAssociatedFile()}.
  *
  * <pre>
@@ -32,5 +32,5 @@
      *
      * @param layerInfo information about the layer to be saved to save. Must not be null.
-     * @param monitor the monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor the monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
      * @throws IllegalArgumentException thrown if layer is null
      */
Index: trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java	(revision 5266)
@@ -308,7 +308,7 @@
 
     /**
-     * Replies the {@see UploadStrategySpecification} the user entered in the dialog.
-     *
-     * @return the {@see UploadStrategySpecification} the user entered in the dialog.
+     * Replies the {@link UploadStrategySpecification} the user entered in the dialog.
+     *
+     * @return the {@link UploadStrategySpecification} the user entered in the dialog.
      */
     public UploadStrategySpecification getUploadStrategySpecification() {
Index: trunk/src/org/openstreetmap/josm/gui/io/UploadLayerTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/UploadLayerTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/UploadLayerTask.java	(revision 5266)
@@ -24,5 +24,5 @@
 
 /**
- * UploadLayerTask uploads the data managed by an {@see OsmDataLayer} asynchronously.
+ * UploadLayerTask uploads the data managed by an {@link OsmDataLayer} asynchronously.
  *
  * <pre>
@@ -52,5 +52,5 @@
      * @param strategy the upload strategy specification
      * @param layer the layer. Must not be null.
-     * @param monitor  a progress monitor. If monitor is null, uses {@see NullProgressMonitor#INSTANCE}
+     * @param monitor  a progress monitor. If monitor is null, uses {@link NullProgressMonitor#INSTANCE}
      * @param changeset the changeset to be used
      * @throws IllegalArgumentException thrown, if layer is null
Index: trunk/src/org/openstreetmap/josm/gui/io/UploadStrategy.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/UploadStrategy.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/UploadStrategy.java	(revision 5266)
@@ -58,5 +58,5 @@
      * present, checks for the legacy preference key <pre>osm-server.atomic-upload</pre>.
      *
-     * If both are missing or if the preference value is illegal, {@see #DEFAULT_UPLOAD_STRATEGY}
+     * If both are missing or if the preference value is illegal, {@link #DEFAULT_UPLOAD_STRATEGY}
      * is replied.
      *
Index: trunk/src/org/openstreetmap/josm/gui/io/UploadStrategySelectionPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/UploadStrategySelectionPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/UploadStrategySelectionPanel.java	(revision 5266)
@@ -39,5 +39,5 @@
  *
  * Clients can listen for property change events for the property
- * {@see #UPLOAD_STRATEGY_SPECIFICATION_PROP}.
+ * {@link #UPLOAD_STRATEGY_SPECIFICATION_PROP}.
  */
 public class UploadStrategySelectionPanel extends JPanel implements PropertyChangeListener {
Index: trunk/src/org/openstreetmap/josm/gui/io/UploadStrategySpecification.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/UploadStrategySpecification.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/UploadStrategySpecification.java	(revision 5266)
@@ -4,9 +4,9 @@
 /**
  * An UploadStrategySpecification consists of the parameter describing the strategy
- * for uploading a collection of {@see OsmPrimitive}.
+ * for uploading a collection of {@link OsmPrimitive}.
  *
  * This includes:
  * <ul>
- * <li>a decision on which {@see UploadStrategy} to use</li>
+ * <li>a decision on which {@link UploadStrategy} to use</li>
  * <li>the upload chunk size</li>
  * <li>whether to close the changeset used after the upload</li>
Index: trunk/src/org/openstreetmap/josm/gui/io/UploadedObjectsSummaryPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/UploadedObjectsSummaryPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/io/UploadedObjectsSummaryPanel.java	(revision 5266)
@@ -21,5 +21,5 @@
 /**
  * This panel displays a summary of the objects to upload. It is displayed in
- * the upper part of the {@see UploadDialog}.
+ * the upper part of the {@link UploadDialog}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/layer/Layer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/layer/Layer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/layer/Layer.java	(revision 5266)
@@ -239,5 +239,5 @@
     /**
      * Sets the visibility of this layer. Emits property change event for
-     * property {@see #VISIBLE_PROP}.
+     * property {@link #VISIBLE_PROP}.
      *
      * @param visible true, if the layer is visible; false, otherwise.
@@ -287,5 +287,5 @@
 
     /**
-     * Adds a {@see PropertyChangeListener}
+     * Adds a {@link PropertyChangeListener}
      *
      * @param listener the listener
@@ -296,5 +296,5 @@
 
     /**
-     * Removes a {@see PropertyChangeListener}
+     * Removes a {@link PropertyChangeListener}
      *
      * @param listener the listener
@@ -305,5 +305,5 @@
 
     /**
-     * fires a property change for the property {@see #VISIBLE_PROP}
+     * fires a property change for the property {@link #VISIBLE_PROP}
      *
      * @param oldValue the old value
@@ -315,5 +315,5 @@
 
     /**
-     * fires a property change for the property {@see #OPACITY_PROP}
+     * fires a property change for the property {@link #OPACITY_PROP}
      *
      * @param oldValue the old value
@@ -406,10 +406,10 @@
     public void projectionChanged(Projection oldValue, Projection newValue) {
         if(!isProjectionSupported(newValue)) {
-              JOptionPane.showMessageDialog(Main.parent,
-                  tr("The layer {0} does not support the new projection {1}.\n{2}\n"
-                  + "Change the projection again or remove the layer.",
-                      getName(), newValue.toCode(), nameSupportedProjections()),
-                      tr("Warning"),
-                      JOptionPane.WARNING_MESSAGE);
+            JOptionPane.showMessageDialog(Main.parent,
+                    tr("The layer {0} does not support the new projection {1}.\n{2}\n"
+                            + "Change the projection again or remove the layer.",
+                            getName(), newValue.toCode(), nameSupportedProjections()),
+                            tr("Warning"),
+                            JOptionPane.WARNING_MESSAGE);
         }
     }
Index: trunk/src/org/openstreetmap/josm/gui/oauth/AbstractAuthorizationUI.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/oauth/AbstractAuthorizationUI.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/oauth/AbstractAuthorizationUI.java	(revision 5266)
@@ -52,5 +52,5 @@
 
     /**
-     * Replies the panel for entering advanced OAuth parameters (see {@see OAuthParameters})
+     * Replies the panel for entering advanced OAuth parameters (see {@link OAuthParameters})
      *
      * @return the panel for entering advanced OAuth parameters
@@ -80,5 +80,5 @@
 
     /**
-     * Sets the current Access Token. This will fire a property change event for {@see #ACCESS_TOKEN_PROP}
+     * Sets the current Access Token. This will fire a property change event for {@link #ACCESS_TOKEN_PROP}
      * if the access token has changed
      *
Index: trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java	(revision 5266)
@@ -125,5 +125,5 @@
      * Provider and replies the request token.
      *
-     * @param monitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
      * @return the OAuth Request Token
      * @throws OsmOAuthAuthorizationException thrown if something goes wrong when retrieving the request token
@@ -155,7 +155,7 @@
      * Provider and replies the request token.
      *
-     * You must have requested a Request Token using {@see #getRequestToken(ProgressMonitor)} first.
-     *
-     * @param monitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
+     * You must have requested a Request Token using {@link #getRequestToken(ProgressMonitor)} first.
+     *
+     * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
      * @return the OAuth Access Token
      * @throws OsmOAuthAuthorizationException thrown if something goes wrong when retrieving the request token
@@ -525,5 +525,5 @@
      * @param osmPassword the OSM password. Must not be null.
      * @param privileges the set of privileges. Must not be null.
-     * @param monitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
      * @throws IllegalArgumentException thrown if requestToken is null
      * @throws IllegalArgumentException thrown if osmUserName is null
Index: trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveAccessTokenTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveAccessTokenTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveAccessTokenTask.java	(revision 5266)
@@ -35,5 +35,5 @@
      * Creates the task
      *
-     * @param parent the parent component relative to which the {@see PleaseWaitRunnable}-Dialog
+     * @param parent the parent component relative to which the {@link PleaseWaitRunnable}-Dialog
      * is displayed
      * @param parameters the OAuth parameters. Must not be null.
Index: trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveRequestTokenTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveRequestTokenTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveRequestTokenTask.java	(revision 5266)
@@ -33,5 +33,5 @@
      * Creates the task
      *
-     * @param parent the parent component relative to which the {@see PleaseWaitRunnable}-Dialog
+     * @param parent the parent component relative to which the {@link PleaseWaitRunnable}-Dialog
      * is displayed
      * @param parameters the OAuth parameters. Must not be null.
Index: trunk/src/org/openstreetmap/josm/gui/oauth/TestAccessTokenTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/oauth/TestAccessTokenTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/oauth/TestAccessTokenTask.java	(revision 5266)
@@ -51,5 +51,5 @@
      * Create the task
      *
-     * @param parent the parent component relative to which the  {@see PleaseWaitRunnable}-Dialog is displayed
+     * @param parent the parent component relative to which the  {@link PleaseWaitRunnable}-Dialog is displayed
      * @param apiUrl the API URL. Must not be null.
      * @param parameters the OAuth parameters. Must not be null.
Index: trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java	(revision 5266)
@@ -41,5 +41,5 @@
 
     /**
-     * Embeds a vertically scrollable panel in a {@see JScrollPane}
+     * Embeds a vertically scrollable panel in a {@link JScrollPane}
      * @param panel the panel
      * @return the scroll pane
Index: trunk/src/org/openstreetmap/josm/gui/preferences/server/ApiUrlTestTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/preferences/server/ApiUrlTestTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/preferences/server/ApiUrlTestTask.java	(revision 5266)
@@ -25,5 +25,5 @@
  * This is an asynchronous task for testing whether an URL points to an OSM API server.
  * It tries to retrieve a list of changesets from the given URL. If it succeeds, the method
- * {@see #isSuccess()} replies true, otherwise false.
+ * {@link #isSuccess()} replies true, otherwise false.
  *
  * Note: it fetches a list of changesets instead of the much smaller capabilities because - strangely enough -
@@ -44,5 +44,5 @@
      * Creates the task
      *
-     * @param parent the parent component relative to which the {@see PleaseWaitRunnable}-Dialog is displayed
+     * @param parent the parent component relative to which the {@link PleaseWaitRunnable}-Dialog is displayed
      * @param url the url. Must not be null.
      * @throws IllegalArgumentException thrown if url is null.
Index: trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java	(revision 5266)
@@ -40,5 +40,5 @@
  * user already has an Access Token.
  *
- * For initial authorisation see {@see OAuthAuthorisationWizard}.
+ * For initial authorisation see {@link OAuthAuthorisationWizard}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/gui/progress/ProgressRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/progress/ProgressRenderer.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/progress/ProgressRenderer.java	(revision 5266)
@@ -3,5 +3,5 @@
 
 /**
- * Swing components can implement this interface and use a {@see SwingRenderingProgressMonitor}
+ * Swing components can implement this interface and use a {@link SwingRenderingProgressMonitor}
  * to render progress information.
  *
Index: trunk/src/org/openstreetmap/josm/gui/progress/SwingRenderingProgressMonitor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/progress/SwingRenderingProgressMonitor.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/progress/SwingRenderingProgressMonitor.java	(revision 5266)
@@ -11,5 +11,5 @@
 /**
  * SwingRenderingProgressMonitor is progress monitor which delegates the rendering
- * of progress information to a {@see ProgressRenderer}.
+ * of progress information to a {@link ProgressRenderer}.
  * Methods of the progress renderer are always called on the Swing EDT.
  *
Index: trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorModel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorModel.java	(revision 5266)
@@ -47,5 +47,5 @@
      * for row selection and column selection.
      *
-     * To create a {@see JTable} with this model:
+     * To create a {@link JTable} with this model:
      * <pre>
      *    TagEditorModel model = new TagEditorModel();
@@ -441,7 +441,7 @@
 
     /**
-     * Replies the tags in this tag editor model as {@see TagCollection}.
-     *
-     * @return the tags in this tag editor model as {@see TagCollection}
+     * Replies the tags in this tag editor model as {@link TagCollection}.
+     *
+     * @return the tags in this tag editor model as {@link TagCollection}
      */
     public TagCollection getTagCollection() {
Index: trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorPanel.java	(revision 5266)
@@ -23,5 +23,5 @@
 
 /**
- * TagEditorPanel is a {@see JPanel} which can be embedded as UI component in
+ * TagEditorPanel is a {@link JPanel} which can be embedded as UI component in
  * UIs. It provides a spreadsheet like tabular control for editing tag names
  * and tag values. Two action buttons are placed on the left, one for adding
@@ -120,5 +120,5 @@
     /**
      * Creates a new tag editor panel. The editor model is created
-     * internally and can be retrieved with {@see #getModel()}.
+     * internally and can be retrieved with {@link #getModel()}.
      */
     public TagEditorPanel(PresetHandler presetHandler) {
Index: trunk/src/org/openstreetmap/josm/gui/tagging/TagTable.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/TagTable.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/TagTable.java	(revision 5266)
@@ -540,7 +540,7 @@
      *
      * This implementation also checks whether focus is transferred to one of a list
-     * of dedicated components, see {@see TagTable#doNotStopCellEditingWhenFocused}.
-     * A typical example for such a component is a button in {@see TagEditorPanel}
-     * which isn't a child component of {@see TagTable} but which should respond to
+     * of dedicated components, see {@link TagTable#doNotStopCellEditingWhenFocused}.
+     * A typical example for such a component is a button in {@link TagEditorPanel}
+     * which isn't a child component of {@link TagTable} but which should respond to
      * to focus transfer in a similar way to a child of TagTable.
      *
Index: trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java	(revision 5266)
@@ -25,8 +25,8 @@
 /**
  * AutoCompletingTextField is an text field with autocompletion behaviour. It
- * can be used as table cell editor in {@see JTable}s.
+ * can be used as table cell editor in {@link JTable}s.
  *
- * Autocompletion is controlled by a list of {@see AutoCompletionListItem}s
- * managed in a {@see AutoCompletionList}.
+ * Autocompletion is controlled by a list of {@link AutoCompletionListItem}s
+ * managed in a {@link AutoCompletionList}.
  *
  *
Index: trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionList.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionList.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionList.java	(revision 5266)
@@ -13,10 +13,10 @@
 
 /**
- * AutoCompletionList manages a list of {@see AutoCompletionListItem}s.
+ * AutoCompletionList manages a list of {@link AutoCompletionListItem}s.
  *
  * The list is sorted, items with higher priority first, then according to lexicographic order
- * on the value of the {@see AutoCompletionListItem}.
- *
- * AutoCompletionList maintains two views on the list of {@see AutoCompletionListItem}s.
+ * on the value of the {@link AutoCompletionListItem}.
+ *
+ * AutoCompletionList maintains two views on the list of {@link AutoCompletionListItem}s.
  * <ol>
  *   <li>the bare, unfiltered view which includes all items</li>
@@ -49,5 +49,5 @@
 
     /**
-     * applies a filter expression to the list of {@see AutoCompletionListItem}s.
+     * applies a filter expression to the list of {@link AutoCompletionListItem}s.
      *
      * The matching criterion is a case insensitive substring match.
@@ -247,5 +247,5 @@
     /**
      * replies the idx-th item from the list of filtered items
-     * @param idx the index; must be in the range 0<= idx < {@see #getFilteredSize()}
+     * @param idx the index; must be in the range 0<= idx < {@link #getFilteredSize()}
      * @return the item
      *
Index: trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionListItem.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionListItem.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionListItem.java	(revision 5266)
@@ -10,5 +10,5 @@
  *  in an auto completion list for tag names, standard tag names would be assigned a higher
  *  priority than arbitrary tag names present in the current data set. There are three priority levels,
- *  {@see AutoCompletionItemPritority}.
+ *  {@link AutoCompletionItemPritority}.
  *
  * The value is a string which will be displayed in the auto completion list.
Index: trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java	(revision 5266)
@@ -205,5 +205,5 @@
 
     /**
-     * Populates the an {@see AutoCompletionList} with the currently cached
+     * Populates the an {@link AutoCompletionList} with the currently cached
      * member roles.
      *
@@ -216,5 +216,5 @@
 
     /**
-     * Populates the an {@see AutoCompletionList} with the currently cached
+     * Populates the an {@link AutoCompletionList} with the currently cached
      * tag keys
      *
@@ -227,5 +227,5 @@
 
     /**
-     * Populates the an {@see AutoCompletionList} with the currently cached
+     * Populates the an {@link AutoCompletionList} with the currently cached
      * values for a tag
      *
@@ -238,5 +238,5 @@
 
     /**
-     * Populates the an {@see AutoCompletionList} with the currently cached
+     * Populates the an {@link AutoCompletionList} with the currently cached
      * values for some given tags
      *
Index: trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java	(revision 5266)
@@ -24,9 +24,9 @@
  * This is an abstract class for a validator on a text component.
  *
- * Subclasses implement {@see #validate()}. {@see #validate()} is invoked whenever
+ * Subclasses implement {@link #validate()}. {@link #validate()} is invoked whenever
  * <ul>
- *   <li>the content of the text component changes (the validator is a {@see DocumentListener})</li>
- *   <li>the text component loses focus (the validator is a {@see FocusListener})</li>
- *   <li>the text component is a {@see JTextField} and an {@see ActionEvent} is detected</li>
+ *   <li>the content of the text component changes (the validator is a {@link DocumentListener})</li>
+ *   <li>the text component loses focus (the validator is a {@link FocusListener})</li>
+ *   <li>the text component is a {@link JTextField} and an {@link ActionEvent} is detected</li>
  * </ul>
  *
Index: trunk/src/org/openstreetmap/josm/gui/widgets/HtmlPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/widgets/HtmlPanel.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/widgets/HtmlPanel.java	(revision 5266)
@@ -16,5 +16,5 @@
  * HTML.
  *
- * It displays HTML text in the same font as {@see JLabel}. Hyperlinks are rendered in
+ * It displays HTML text in the same font as {@link JLabel}. Hyperlinks are rendered in
  * blue and they are underlined. There is also a CSS rule for the HTML tag &lt;strong&gt;
  * configured.
Index: trunk/src/org/openstreetmap/josm/gui/widgets/OsmIdTextField.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/widgets/OsmIdTextField.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/gui/widgets/OsmIdTextField.java	(revision 5266)
@@ -47,5 +47,5 @@
 
     /**
-     * Validator for a changeset ID entered in a {@see JTextComponent}.
+     * Validator for a changeset ID entered in a {@link JTextComponent}.
      *
      */
Index: trunk/src/org/openstreetmap/josm/io/ChangesetClosedException.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/ChangesetClosedException.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/ChangesetClosedException.java	(revision 5266)
@@ -14,5 +14,5 @@
 /**
  * A ChangesetClosedException is thrown if the server replies with a HTTP
- * return code 409 (Conflict) with the error header {@see #ERROR_HEADER_PATTERN}.
+ * return code 409 (Conflict) with the error header {@link #ERROR_HEADER_PATTERN}.
  *
  * Depending on the context the exception is thrown in we have to react differently.
@@ -50,8 +50,8 @@
 
     /**
-     * Replies true if <code>errorHeader</code> matches with {@see #ERROR_HEADER_PATTERN}
+     * Replies true if <code>errorHeader</code> matches with {@link #ERROR_HEADER_PATTERN}
      *
      * @param errorHeader the error header
-     * @return true if <code>errorHeader</code> matches with {@see #ERROR_HEADER_PATTERN}
+     * @return true if <code>errorHeader</code> matches with {@link #ERROR_HEADER_PATTERN}
      */
     static public boolean errorHeaderMatchesPattern(String errorHeader) {
Index: trunk/src/org/openstreetmap/josm/io/ChangesetQuery.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/ChangesetQuery.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/ChangesetQuery.java	(revision 5266)
@@ -67,5 +67,5 @@
      *
      * Caveat: for historical reasons the username might not be unique! It is recommended to use
-     * {@see #forUser(int)} to restrict the query to a specific user.
+     * {@link #forUser(int)} to restrict the query to a specific user.
      *
      * @param username the username. Must not be null.
@@ -94,5 +94,5 @@
     /**
      * Replies the user name which this query is restricted to. null, if this query isn't
-     * restricted to a user name, i.e. if {@see #isRestrictedToPartiallyIdentifiedUser()} is false.
+     * restricted to a user name, i.e. if {@link #isRestrictedToPartiallyIdentifiedUser()} is false.
      *
      * @return the user name which this query is restricted to
@@ -406,5 +406,5 @@
         /**
          * Parses the changeset query given as URL query parameters and replies a
-         * {@see ChangesetQuery}
+         * {@link ChangesetQuery}
          *
          * <code>query</code> is the query part of a API url for querying changesets,
Index: trunk/src/org/openstreetmap/josm/io/DefaultProxySelector.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/DefaultProxySelector.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/DefaultProxySelector.java	(revision 5266)
@@ -24,5 +24,5 @@
 public class DefaultProxySelector extends ProxySelector {
     /**
-     * The {@see ProxySelector} provided by the JDK will retrieve proxy information
+     * The {@link ProxySelector} provided by the JDK will retrieve proxy information
      * from the system settings, if the system property <tt>java.net.useSystemProxies</tt>
      * is defined <strong>at startup</strong>. It has no effect if the property is set
@@ -40,5 +40,5 @@
 
     /**
-     * The {@see ProxySelector} provided by the JDK will retrieve proxy information
+     * The {@link ProxySelector} provided by the JDK will retrieve proxy information
      * from the system settings, if the system property <tt>java.net.useSystemProxies</tt>
      * is defined <strong>at startup</strong>. If the property is set later by the application,
Index: trunk/src/org/openstreetmap/josm/io/DiffResultProcessor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/DiffResultProcessor.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/DiffResultProcessor.java	(revision 5266)
@@ -70,5 +70,5 @@
      *
      * @param diffUploadResponse the response. Must not be null.
-     * @param progressMonitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
+     * @param progressMonitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
      * @throws IllegalArgumentException thrown if diffUploadRequest is null
      * @throws OsmDataParsingException thrown if the diffUploadRequest can't be parsed successfully
@@ -105,5 +105,5 @@
      *
      * @param cs the current changeset. Ignored if null.
-     * @param monitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
      * @return the collection of processed primitives
      */
Index: trunk/src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java	(revision 5266)
@@ -29,5 +29,5 @@
 
 /**
- * Retrieves a set of {@see OsmPrimitive}s from an OSM server using the so called
+ * Retrieves a set of {@link OsmPrimitive}s from an OSM server using the so called
  * Multi Fetch API.
  *
@@ -77,5 +77,5 @@
 
     /**
-     * Remembers an {@see OsmPrimitive}'s id. The id will
+     * Remembers an {@link OsmPrimitive}'s id. The id will
      * later be fetched as part of a Multi Get request.
      *
@@ -94,6 +94,6 @@
 
     /**
-     * remembers an {@see OsmPrimitive}'s id. <code>ds</code> must include
-     * an {@see OsmPrimitive} with id=<code>id</code>. The id will
+     * remembers an {@link OsmPrimitive}'s id. <code>ds</code> must include
+     * an {@link OsmPrimitive} with id=<code>id</code>. The id will
      * later we fetched as part of a Multi Get request.
      *
@@ -103,5 +103,5 @@
      * @param id  the id
      * @exception IllegalArgumentException thrown, if ds is null
-     * @exception NoSuchElementException thrown, if ds doesn't include an {@see OsmPrimitive} with
+     * @exception NoSuchElementException thrown, if ds doesn't include an {@link OsmPrimitive} with
      *   id=<code>id</code>
      */
@@ -135,5 +135,5 @@
 
     /**
-     * appends a {@see Node}s id to the list of ids which will be fetched from the server.
+     * appends a {@link Node}s id to the list of ids which will be fetched from the server.
      *
      * @param node  the node (ignored, if null)
@@ -148,5 +148,5 @@
 
     /**
-     * appends a {@see Way}s id and the list of ids of nodes the way refers to the list of ids which will be fetched from the server.
+     * appends a {@link Way}s id and the list of ids of nodes the way refers to the list of ids which will be fetched from the server.
      *
      * @param way the way (ignored, if null)
@@ -167,5 +167,5 @@
 
     /**
-     * appends a {@see Relation}s id to the list of ids which will be fetched from the server.
+     * appends a {@link Relation}s id to the list of ids which will be fetched from the server.
      *
      * @param relation  the relation (ignored, if null)
@@ -204,5 +204,5 @@
 
     /**
-     * appends a list of {@see OsmPrimitive} to the list of ids which will be fetched from the server.
+     * appends a list of {@link OsmPrimitive} to the list of ids which will be fetched from the server.
      *
      * @param primitives  the list of primitives (ignored, if null)
@@ -223,5 +223,5 @@
 
     /**
-     * extracts a subset of max {@see #MAX_IDS_PER_REQUEST} ids from <code>ids</code> and
+     * extracts a subset of max {@link #MAX_IDS_PER_REQUEST} ids from <code>ids</code> and
      * replies the subset. The extracted subset is removed from <code>ids</code>.
      *
@@ -248,5 +248,5 @@
     /**
      * builds the Multi Get request string for a set of ids and a given
-     * {@see OsmPrimitiveType}.
+     * {@link OsmPrimitiveType}.
      *
      * @param type the type
@@ -271,5 +271,5 @@
     /**
      * builds the Multi Get request string for a single id and a given
-     * {@see OsmPrimitiveType}.
+     * {@link OsmPrimitiveType}.
      *
      * @param type the type
@@ -286,6 +286,6 @@
 
     /**
-     * invokes a Multi Get for a set of ids and a given {@see OsmPrimitiveType}.
-     * The retrieved primitives are merged to {@see #outputDataSet}.
+     * invokes a Multi Get for a set of ids and a given {@link OsmPrimitiveType}.
+     * The retrieved primitives are merged to {@link #outputDataSet}.
      *
      * @param type the type
@@ -309,6 +309,6 @@
 
     /**
-     * invokes a Multi Get for a single id and a given {@see OsmPrimitiveType}.
-     * The retrieved primitive is merged to {@see #outputDataSet}.
+     * invokes a Multi Get for a single id and a given {@link OsmPrimitiveType}.
+     * The retrieved primitive is merged to {@link #outputDataSet}.
      *
      * @param type the type
@@ -333,6 +333,6 @@
 
     /**
-     * invokes a sequence of Multi Gets for individual ids in a set of ids and a given {@see OsmPrimitiveType}.
-     * The retrieved primitives are merged to {@see #outputDataSet}.
+     * invokes a sequence of Multi Gets for individual ids in a set of ids and a given {@link OsmPrimitiveType}.
+     * The retrieved primitives are merged to {@link #outputDataSet}.
      *
      * This method is used if one of the ids in pkg doesn't exist (the server replies with return code 404).
@@ -380,5 +380,5 @@
 
     /**
-     * merges the dataset <code>from</code> to {@see #outputDataSet}.
+     * merges the dataset <code>from</code> to {@link #outputDataSet}.
      *
      * @param from the other dataset
@@ -391,5 +391,5 @@
 
     /**
-     * fetches a set of ids of a given {@see OsmPrimitiveType} from the server
+     * fetches a set of ids of a given {@link OsmPrimitiveType} from the server
      *
      * @param ids the set of ids
@@ -423,5 +423,5 @@
 
     /**
-     * invokes one or more Multi Gets to fetch the {@see OsmPrimitive}s and replies
+     * invokes one or more Multi Gets to fetch the {@link OsmPrimitive}s and replies
      * the dataset of retrieved primitives. Note that the dataset includes non visible primitives too!
      * In contrast to a simple Get for a node, a way, or a relation, a Multi Get always replies
@@ -429,5 +429,5 @@
      * visible==false).
      *
-     * Invoke {@see #getMissingPrimitives()} to get a list of primitives which have not been
+     * Invoke {@link #getMissingPrimitives()} to get a list of primitives which have not been
      * found on  the server (the server response code was 404)
      *
Index: trunk/src/org/openstreetmap/josm/io/OsmApi.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmApi.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmApi.java	(revision 5266)
@@ -59,5 +59,5 @@
 
     /**
-     * replies the {@see OsmApi} for a given server URL
+     * replies the {@link OsmApi} for a given server URL
      *
      * @param serverUrl  the server URL
@@ -75,5 +75,5 @@
     }
     /**
-     * replies the {@see OsmApi} for the URL given by the preference <code>osm-server.url</code>
+     * replies the {@link OsmApi} for the URL given by the preference <code>osm-server.url</code>
      *
      * @return the OsmApi
@@ -387,5 +387,5 @@
      *
      * @param changeset the changeset to update. Must not be null.
-     * @param monitor the progress monitor. If null, uses the {@see NullProgressMonitor#INSTANCE}.
+     * @param monitor the progress monitor. If null, uses the {@link NullProgressMonitor#INSTANCE}.
      *
      * @throws OsmTransferException if something goes wrong.
@@ -428,5 +428,5 @@
      *
      * @param changeset the changeset to be closed. Must not be null. changeset.getId() > 0 required.
-     * @param monitor the progress monitor. If null, uses {@see NullProgressMonitor#INSTANCE}
+     * @param monitor the progress monitor. If null, uses {@link NullProgressMonitor#INSTANCE}
      *
      * @throws OsmTransferException if something goes wrong.
Index: trunk/src/org/openstreetmap/josm/io/OsmChangeReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmChangeReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmChangeReader.java	(revision 5266)
@@ -100,5 +100,5 @@
      *
      * @param source the source input stream. Must not be null.
-     * @param progressMonitor  the progress monitor. If null, {@see NullProgressMonitor#INSTANCE} is assumed
+     * @param progressMonitor  the progress monitor. If null, {@link NullProgressMonitor#INSTANCE} is assumed
      *
      * @return the dataset with the parsed data
Index: trunk/src/org/openstreetmap/josm/io/OsmChangesetContentParser.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmChangesetContentParser.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmChangesetContentParser.java	(revision 5266)
@@ -300,5 +300,5 @@
      * Parses the content
      *
-     * @param progressMonitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE}
+     * @param progressMonitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE}
      * if null
      * @return the parsed data
Index: trunk/src/org/openstreetmap/josm/io/OsmHistoryReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmHistoryReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmHistoryReader.java	(revision 5266)
@@ -32,7 +32,7 @@
  * Parser for OSM history data.
  *
- * It is slightly different from {@see OsmReader} because we don't build an internal graph of
- * {@see OsmPrimitive}s. We use objects derived from {@see HistoryOsmPrimitive} instead and we
- * keep the data in a dedicated {@see HistoryDataSet}.
+ * It is slightly different from {@link OsmReader} because we don't build an internal graph of
+ * {@link OsmPrimitive}s. We use objects derived from {@link HistoryOsmPrimitive} instead and we
+ * keep the data in a dedicated {@link HistoryDataSet}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/io/OsmReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmReader.java	(revision 5266)
@@ -606,5 +606,5 @@
      *
      * @param source the source input stream. Must not be null.
-     * @param progressMonitor  the progress monitor. If null, {@see NullProgressMonitor#INSTANCE} is assumed
+     * @param progressMonitor  the progress monitor. If null, {@link NullProgressMonitor#INSTANCE} is assumed
      *
      * @return the dataset with the parsed data
Index: trunk/src/org/openstreetmap/josm/io/OsmServerBackreferenceReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmServerBackreferenceReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmServerBackreferenceReader.java	(revision 5266)
@@ -21,6 +21,6 @@
 /**
  * OsmServerBackreferenceReader fetches the primitives from the OSM server which
- * refer to a specific primitive. For a {@see Node}, ways and relations are retrieved
- * which refer to the node. For a {@see Way} or a {@see Relation}, only relations are
+ * refer to a specific primitive. For a {@link Node}, ways and relations are retrieved
+ * which refer to the node. For a {@link Way} or a {@link Relation}, only relations are
  * read.
  *
@@ -29,5 +29,5 @@
  * of these calls is to reply incomplete primitives only.
  *
- * If you set {@see #setReadFull(boolean)} to true this reader uses a {@see MultiFetchServerObjectReader}
+ * If you set {@link #setReadFull(boolean)} to true this reader uses a {@link MultiFetchServerObjectReader}
  * to complete incomplete primitives.
  *
@@ -123,5 +123,5 @@
 
     /**
-     * Reads referring ways from the API server and replies them in a {@see DataSet}
+     * Reads referring ways from the API server and replies them in a {@link DataSet}
      *
      * @return the data set
@@ -160,5 +160,5 @@
 
     /**
-     * Reads referring relations from the API server and replies them in a {@see DataSet}
+     * Reads referring relations from the API server and replies them in a {@link DataSet}
      *
      * @param progressMonitor the progress monitor
@@ -203,8 +203,8 @@
      *
      * <ul>
-     *   <li>if this reader reads referers for a {@see Node}, referring ways are always
+     *   <li>if this reader reads referers for a {@link Node}, referring ways are always
      *     read individually from the server</li>
-     *   <li>if this reader reads referers for an {@see Way} or a {@see Relation}, referring relations
-     *    are only read fully if {@see #setReadFull(boolean)} is set to true.</li>
+     *   <li>if this reader reads referers for an {@link Way} or a {@link Relation}, referring relations
+     *    are only read fully if {@link #setReadFull(boolean)} is set to true.</li>
      * </ul>
      *
@@ -249,7 +249,7 @@
     /**
      * Reads the referring primitives from the OSM server, parses them and
-     * replies them as {@see DataSet}
-     *
-     * @param progressMonitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null.
+     * replies them as {@link DataSet}
+     *
+     * @param progressMonitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null.
      * @return the dataset with the referring primitives
      * @exception OsmTransferException thrown if an error occurs while communicating with the server
Index: trunk/src/org/openstreetmap/josm/io/OsmServerChangesetReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmServerChangesetReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmServerChangesetReader.java	(revision 5266)
@@ -22,5 +22,5 @@
 
 /**
- * Reads the history of an {@see OsmPrimitive} from the OSM API server.
+ * Reads the history of an {@link OsmPrimitive} from the OSM API server.
  *
  */
@@ -47,5 +47,5 @@
      * Queries a list
      * @param query  the query specification. Must not be null.
-     * @param monitor a progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor a progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
      * @return the list of changesets read from the server
      * @throws IllegalArgumentException thrown if query is null
@@ -80,5 +80,5 @@
      *
      * @param id  the changeset id. id > 0 required.
-     * @param monitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
      * @return the changeset read
      * @throws OsmTransferException thrown if something goes wrong
@@ -116,5 +116,5 @@
      *
      * @param ids  the list of ids. Ignored if null. Only load changesets for ids > 0.
-     * @param monitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
      * @return the changeset read
      * @throws OsmTransferException thrown if something goes wrong
@@ -165,5 +165,5 @@
      *
      * @param id the changeset id. >0 required.
-     * @param monitor the progress monitor. {@see NullProgressMonitor#INSTANCE} assumed if null.
+     * @param monitor the progress monitor. {@link NullProgressMonitor#INSTANCE} assumed if null.
      * @return the changeset content
      * @throws IllegalArgumentException thrown if id <= 0
Index: trunk/src/org/openstreetmap/josm/io/OsmServerHistoryReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmServerHistoryReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmServerHistoryReader.java	(revision 5266)
@@ -14,5 +14,5 @@
 
 /**
- * Reads the history of an {@see OsmPrimitive} from the OSM API server.
+ * Reads the history of an {@link OsmPrimitive} from the OSM API server.
  *
  */
Index: trunk/src/org/openstreetmap/josm/io/OsmServerObjectReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmServerObjectReader.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmServerObjectReader.java	(revision 5266)
@@ -106,5 +106,5 @@
      * Downloads and parses the data.
      *
-     * @param progressMonitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if
+     * @param progressMonitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if
      * null
      * @return the downloaded data
Index: trunk/src/org/openstreetmap/josm/io/OsmServerWriter.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/OsmServerWriter.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/OsmServerWriter.java	(revision 5266)
@@ -185,5 +185,5 @@
      * @param primitives list of objects to send
      * @param changeset the changeset the data is uploaded to. Must not be null.
-     * @param monitor the progress monitor. If null, assumes {@see NullProgressMonitor#INSTANCE}
+     * @param monitor the progress monitor. If null, assumes {@link NullProgressMonitor#INSTANCE}
      * @throws IllegalArgumentException thrown if changeset is null
      * @throws IllegalArgumentException thrown if strategy is null
Index: trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgent.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgent.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgent.java	(revision 5266)
@@ -11,7 +11,7 @@
  * A CredentialsAgent manages two credentials:
  * <ul>
- *   <li>the credential for {@see RequestorType#SERVER} which is equal to the OSM API credentials
+ *   <li>the credential for {@link RequestorType#SERVER} which is equal to the OSM API credentials
  *   in JOSM</li>
- *   <li>the credential for {@see RequestorType#PROXY} which is equal to the credentials for an
+ *   <li>the credential for {@link RequestorType#PROXY} which is equal to the credentials for an
  *   optional HTTP proxy server a user may use</li>
  *  </ul>
@@ -24,5 +24,5 @@
      * Looks up the credentials for a given type.
      *
-     * @param the type of service. {@see RequestorType#SERVER} for the OSM API server, {@see RequestorType#PROXY}
+     * @param the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
      * for a proxy server
      * @return the credentials
@@ -34,5 +34,5 @@
      * Saves the credentials in <code>credentials</code> for the given service type.
      *
-     * @param the type of service. {@see RequestorType#SERVER} for the OSM API server, {@see RequestorType#PROXY}
+     * @param the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
      * for a proxy server
      * @param credentials the credentials
@@ -43,5 +43,5 @@
     /**
      *
-     * @param requestorType  the type of service. {@see RequestorType#SERVER} for the OSM API server, {@see RequestorType#PROXY}
+     * @param requestorType  the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
      * for a proxy server
      * @param noSuccessWithLastResponse true, if the last request with the supplied credentials failed; false otherwise.
Index: trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgentResponse.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgentResponse.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgentResponse.java	(revision 5266)
@@ -3,9 +3,9 @@
 
 /**
- * CredentialsAgentResponse represents the response from {@see CredentialsAgent#getCredentials(java.net.Authenticator.RequestorType, boolean)}.
+ * CredentialsAgentResponse represents the response from {@link CredentialsAgent#getCredentials(java.net.Authenticator.RequestorType, boolean)}.
  *
  * The response consists of the username and the password the requested credentials consists of.
  * In addition, it provides information whether authentication was canceled by the user, i.e.
- * because he or she canceled a username/password dialog (see {@see #isCanceled()}.
+ * because he or she canceled a username/password dialog (see {@link #isCanceled()}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/io/auth/CredentialsManager.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/auth/CredentialsManager.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/auth/CredentialsManager.java	(revision 5266)
@@ -14,5 +14,5 @@
  * CredentialManager is a factory for the single credential agent used.
  *
- * Currently, it defaults to replying an instance of {@see JosmPreferencesCredentialAgent}.
+ * Currently, it defaults to replying an instance of {@link JosmPreferencesCredentialAgent}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/io/auth/DefaultAuthenticator.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/auth/DefaultAuthenticator.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/io/auth/DefaultAuthenticator.java	(revision 5266)
@@ -12,5 +12,5 @@
  * This is the default authenticator used in JOSM. It delegates lookup of credentials
  * for the OSM API and an optional proxy server to the currently configured
- * {@see CredentialsManager}.
+ * {@link CredentialsManager}.
  *
  */
Index: trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java	(revision 5266)
@@ -30,6 +30,6 @@
  * Asynchronous task for downloading a collection of plugins.
  *
- * When the task is finished {@see #getDownloadedPlugins()} replies the list of downloaded plugins
- * and {@see #getFailedPlugins()} replies the list of failed plugins.
+ * When the task is finished {@link #getDownloadedPlugins()} replies the list of downloaded plugins
+ * and {@link #getFailedPlugins()} replies the list of failed plugins.
  *
  */
@@ -45,7 +45,7 @@
      * Creates the download task
      *
-     * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed
+     * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed
      * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null.
-     * @param title the title to display in the {@see PleaseWaitDialog}
+     * @param title the title to display in the {@link PleaseWaitDialog}
      * @throws IllegalArgumentException thrown if toUpdate is null
      */
@@ -59,7 +59,7 @@
      * Creates the task
      *
-     * @param monitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
      * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null.
-     * @param title the title to display in the {@see PleaseWaitDialog}
+     * @param title the title to display in the {@link PleaseWaitDialog}
      * @throws IllegalArgumentException thrown if toUpdate is null
      */
Index: trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java	(revision 5266)
@@ -519,5 +519,5 @@
      *
      * @param plugins the list of plugins
-     * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
+     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
      */
     public static void loadPlugins(Component parent,Collection<PluginInformation> plugins, ProgressMonitor monitor) {
@@ -564,9 +564,9 @@
 
     /**
-     * Loads plugins from <code>plugins</code> which have the flag {@see PluginInformation#early}
+     * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early}
      * set to true.
      *
      * @param plugins the collection of plugins
-     * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
+     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
      */
     public static void loadEarlyPlugins(Component parent, Collection<PluginInformation> plugins, ProgressMonitor monitor) {
@@ -581,9 +581,9 @@
 
     /**
-     * Loads plugins from <code>plugins</code> which have the flag {@see PluginInformation#early}
+     * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early}
      * set to false.
      *
      * @param plugins the collection of plugins
-     * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
+     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
      */
     public static void loadLatePlugins(Component parent, Collection<PluginInformation> plugins, ProgressMonitor monitor) {
@@ -601,5 +601,5 @@
      * plugin lists.
      *
-     * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
+     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
      * @return the list of locally available plugin information
      *
@@ -661,5 +661,5 @@
      * messages.
      *
-     * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
+     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
      * @return the set of plugins to load (as set of plugin names)
      */
@@ -731,5 +731,5 @@
      * @param parent the parent component for message boxes
      * @param plugins the collection of plugins to update. Must not be null.
-     * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
+     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
      * @throws IllegalArgumentException thrown if plugins is null
      */
Index: trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java	(revision 5266)
@@ -25,5 +25,5 @@
  * in the local plugin repositories.
  *
- * It scans the files in the local plugins repository (see {@see Preferences#getPluginsDirectory()}
+ * It scans the files in the local plugins repository (see {@link Preferences#getPluginsDirectory()}
  * and extracts plugin information from three kind of files:
  * <ul>
Index: trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java	(revision 5266)
@@ -72,5 +72,5 @@
      * Creates the task
      *
-     * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
      * @param sites the collection of download sites. Defaults to the empty collection if null.
      */
Index: trunk/src/org/openstreetmap/josm/tools/CheckParameterUtil.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/CheckParameterUtil.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/tools/CheckParameterUtil.java	(revision 5266)
@@ -41,5 +41,5 @@
 
     /**
-     * Ensures that <code>id</code> is non-null primitive id of type {@see OsmPrimitiveType#NODE}
+     * Ensures that <code>id</code> is non-null primitive id of type {@link OsmPrimitiveType#NODE}
      *
      * @param id  the primitive  id
Index: trunk/src/org/openstreetmap/josm/tools/ExceptionUtil.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/ExceptionUtil.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/tools/ExceptionUtil.java	(revision 5266)
@@ -438,5 +438,5 @@
 
     /**
-     * Explains a {@see SecurityException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link SecurityException} which has caused an {@link OsmTransferException}.
      * This is most likely happening when user tries to access the OSM API from within an
      * applet which wasn't loaded from the API server.
@@ -461,5 +461,5 @@
 
     /**
-     * Explains a {@see SocketException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link SocketException} which has caused an {@link OsmTransferException}.
      * This is most likely because there's not connection to the Internet or because
      * the remote server is not reachable.
@@ -477,5 +477,5 @@
 
     /**
-     * Explains a {@see IOException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link IOException} which has caused an {@link OsmTransferException}.
      * This is most likely happening when the communication with the remote server is
      * interrupted for any reason.
@@ -495,5 +495,5 @@
 
     /**
-     * Explains a {@see IllegalDataException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link IllegalDataException} which has caused an {@link OsmTransferException}.
      * This is most likely happening when JOSM tries to load data in in an unsupported format.
      *
@@ -510,5 +510,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because of an internal server
+     * Explains a {@link OsmApiException} which was thrown because of an internal server
      * error in the OSM API server..
      *
@@ -525,5 +525,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because of a bad
+     * Explains a {@link OsmApiException} which was thrown because of a bad
      * request
      *
@@ -548,5 +548,5 @@
     
     /**
-     * Explains a {@see OsmApiException} which was thrown because of
+     * Explains a {@link OsmApiException} which was thrown because of
      * bandwidth limit exceeded (HTTP error 509) 
      *
@@ -562,5 +562,5 @@
 
     /**
-     * Explains a {@see OsmApiException} which was thrown because a resource wasn't found.
+     * Explains a {@link OsmApiException} which was thrown because a resource wasn't found.
      *
      * @param e the exception
@@ -579,5 +579,5 @@
 
     /**
-     * Explains a {@see UnknownHostException} which has caused an {@see OsmTransferException}.
+     * Explains a {@link UnknownHostException} which has caused an {@link OsmTransferException}.
      * This is most likely happening when there is an error in the API URL or when
      * local DNS services are not working.
@@ -625,7 +625,7 @@
 
     /**
-     * Explains an {@see OsmTransferException} to the user.
-     *
-     * @param e the {@see OsmTransferException}
+     * Explains an {@link OsmTransferException} to the user.
+     *
+     * @param e the {@link OsmTransferException}
      */
     public static String explainOsmTransferException(OsmTransferException e) {
@@ -662,6 +662,6 @@
     /**
      * explains the case of an error due to a delete request on an already deleted
-     * {@see OsmPrimitive}, i.e. a HTTP response code 410, where we don't know which
-     * {@see OsmPrimitive} is causing the error.
+     * {@link OsmPrimitive}, i.e. a HTTP response code 410, where we don't know which
+     * {@link OsmPrimitive} is causing the error.
      *
      * @param e the exception
@@ -680,7 +680,7 @@
 
     /**
-     * Explains an {@see Exception} to the user.
-     *
-     * @param e the {@see Exception}
+     * Explains an {@link Exception} to the user.
+     *
+     * @param e the {@link Exception}
      */
     public static String explainException(Exception e) {
Index: trunk/src/org/openstreetmap/josm/tools/Geometry.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/Geometry.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/tools/Geometry.java	(revision 5266)
@@ -534,5 +534,5 @@
      * @param w the way to be checked.
      * @return true if and only if way is oriented clockwise.
-     * @throws IllegalArgumentException if way is not closed (see {@see Way#isClosed}).
+     * @throws IllegalArgumentException if way is not closed (see {@link Way#isClosed}).
      * @see http://paulbourke.net/geometry/polyarea/
      */
Index: trunk/src/org/openstreetmap/josm/tools/I18n.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/I18n.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/tools/I18n.java	(revision 5266)
@@ -132,5 +132,5 @@
      * For example, {@code tr("JOSM''s default value is ''{0}''.", val)}.
      * <br/>
-     * Use {@see #trn} for distinguishing singular from plural text, i.e.,
+     * Use {@link #trn} for distinguishing singular from plural text, i.e.,
      * do not use {@code tr(size == 1 ? "singular" : "plural")} nor
      * {@code size == 1 ? tr("singular") : tr("plural")}
@@ -634,5 +634,5 @@
 
     /**
-     * Sets the default locale (see {@see Locale#setDefault(Locale)} to the local
+     * Sets the default locale (see {@link Locale#setDefault(Locale)} to the local
      * given by <code>localName</code>.
      *
Index: trunk/src/org/openstreetmap/josm/tools/LanguageInfo.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/LanguageInfo.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/tools/LanguageInfo.java	(revision 5266)
@@ -55,7 +55,7 @@
      * Replies the locale code used by JOSM for a given locale.
      *
-     * In most cases JOSM uses the 2-character ISO 639 language code ({@see Locale#getLanguage()}
+     * In most cases JOSM uses the 2-character ISO 639 language code ({@link Locale#getLanguage()}
      * to identify the locale of a localized resource, but in some cases it may use the
-     * programmatic name for locales, as replied by {@see Locale#toString()}.
+     * programmatic name for locales, as replied by {@link Locale#toString()}.
      *
      * @param locale the locale. Replies "en" if null.
Index: trunk/src/org/openstreetmap/josm/tools/OpenBrowser.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/OpenBrowser.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/tools/OpenBrowser.java	(revision 5266)
@@ -31,5 +31,5 @@
      * @return <code>null</code> for success or a string in case of an error.
      * @throws IllegalStateException thrown if no platform is set to which opening the URL can be dispatched,
-     * {@see Main#platform}
+     * {@link Main#platform}
      */
     public static String displayUrl(URI uri) {
Index: trunk/src/org/openstreetmap/josm/tools/Shortcut.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/Shortcut.java	(revision 5265)
+++ trunk/src/org/openstreetmap/josm/tools/Shortcut.java	(revision 5266)
@@ -29,5 +29,5 @@
  *       finally manages loading and saving shortcuts to/from the preferences.
  *
- * Action authors: You only need the {@see #registerShortcut} factory. Ignore everything
+ * Action authors: You only need the {@link #registerShortcut} factory. Ignore everything
  *                 else.
  *
