Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/IncompleteAddressesDialog.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/IncompleteAddressesDialog.java	(revision 24938)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/IncompleteAddressesDialog.java	(revision 24940)
@@ -53,4 +53,5 @@
 	private AddressEditContainer container;
 
+	// Create action objects
 	private SelectAddressesInMapAction selectAction = new SelectAddressesInMapAction();
 	private GuessAddressDataAction guessDataAction = new GuessAddressDataAction();
@@ -58,4 +59,5 @@
 	private RemoveAddressTagsAction removeTagsAction = new RemoveAddressTagsAction();
 	
+	// Array containing the available actions
 	private AbstractAddressEditAction[] actions = new AbstractAddressEditAction[]{
 			selectAction,
@@ -77,7 +79,7 @@
 		this.container = new AddressEditContainer();
 		container.addChangedListener(this);
-		
+		// Top-level panel
 		JPanel p = new JPanel(new BorderLayout());
-		
+		// Table containing address entities
 		IncompleteAddressesTableModel model = new IncompleteAddressesTableModel(container);
 		incompleteAddr = new JTable(model);
@@ -86,10 +88,13 @@
 		incompleteAddr.getSelectionModel().addListSelectionListener(this);
 		
+		// Scroll pane hosting the table
 		JScrollPane sp = new JScrollPane(incompleteAddr);
 		p.add(sp, BorderLayout.CENTER);
 		this.add(p);
 		
+		// Button panel containing the commands
 		JPanel buttonPanel = getButtonPanel(actions.length);
 		
+		// Populate panel with actions
 		for (int i = 0; i < actions.length; i++) {
 			SideButton sb = new SideButton(actions[i]);
@@ -99,4 +104,5 @@
 		this.add(buttonPanel, BorderLayout.SOUTH);
 		
+		// Link actions with address container
 		for (AbstractAddressEditAction action : actions) {
 			action.setContainer(container);
@@ -221,5 +227,3 @@
 		
 	}
-	
-	
 }
