Index: trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java	(revision 12296)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java	(revision 12297)
@@ -559,8 +559,16 @@
     }
 
+    /**
+     * Add a separator to the popup menu
+     */
     public void addPopupMenuSeparator() {
         popupMenu.addSeparator();
     }
 
+    /**
+     * Add a menu item to the popup menu
+     * @param a The action to add
+     * @return The menu item that was added.
+     */
     public JMenuItem addPopupMenuAction(Action a) {
         return popupMenu.add(a);
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerModel.java	(revision 12296)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerModel.java	(revision 12297)
@@ -22,5 +22,4 @@
 /**
  * This is the model for the changeset cache manager dialog.
- *
  */
 public class ChangesetCacheManagerModel extends AbstractTableModel implements ChangesetCacheListener {
@@ -34,12 +33,24 @@
     private final PropertyChangeSupport support = new PropertyChangeSupport(this);
 
+    /**
+     * Creates a new ChangesetCacheManagerModel that is based on the selectionModel
+     * @param selectionModel A new selection model that should be used.
+     */
     public ChangesetCacheManagerModel(DefaultListSelectionModel selectionModel) {
         this.selectionModel = selectionModel;
     }
 
+    /**
+     * Adds a property change listener to this model.
+     * @param listener The listener
+     */
     public void addPropertyChangeListener(PropertyChangeListener listener) {
         support.addPropertyChangeListener(listener);
     }
 
+    /**
+     * Removes a property change listener from this model.
+     * @param listener The listener
+     */
     public void removePropertyChangeListener(PropertyChangeListener listener) {
         support.removePropertyChangeListener(listener);
@@ -132,4 +143,7 @@
     }
 
+    /**
+     * Initializes the data that is displayed using the changeset cache.
+     */
     public void init() {
         ChangesetCache cc = ChangesetCache.getInstance();
@@ -144,8 +158,15 @@
     }
 
+    /**
+     * Destroys and unregisters this model.
+     */
     public void tearDown() {
         ChangesetCache.getInstance().removeChangesetCacheListener(this);
     }
 
+    /**
+     * Gets the selection model this table is based on.
+     * @return The selection model.
+     */
     public DefaultListSelectionModel getSelectionModel() {
         return selectionModel;
