Changeset 29035 in osm for applications/editors/josm/plugins/terracer/src
- Timestamp:
- 2012-12-05T00:08:18+01:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/terracer/src/terracer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/terracer/src/terracer/HouseNumberInputDialog.java
r24713 r29035 16 16 import java.awt.GridBagConstraints; 17 17 import java.awt.GridBagLayout; 18 import java.awt.event.ActionEvent; 18 19 import java.util.ArrayList; 19 20 import java.util.Iterator; 20 import java.awt.event.ActionEvent;21 21 import java.util.TreeSet; 22 22 … … 57 57 final static String INTERPOLATION = "plugins.terracer.interpolation"; 58 58 59 final private Way street;59 //final private Way street; 60 60 final private String streetName; 61 61 final private boolean relationExists; … … 100 100 ); 101 101 this.inputHandler = handler; 102 this.street = street;102 //this.street = street; 103 103 this.streetName = streetName; 104 104 this.relationExists = relationExists; … … 230 230 */ 231 231 @Override protected void buttonAction(int buttonIndex, final ActionEvent evt) { 232 String a = evt.getActionCommand();232 //String a = evt.getActionCommand(); 233 233 this.inputHandler.actionPerformed(evt); 234 234 } -
applications/editors/josm/plugins/terracer/src/terracer/HouseNumberInputHandler.java
r26149 r29035 42 42 * @author casualwalker 43 43 */ 44 @SuppressWarnings("serial") 44 45 public class HouseNumberInputHandler extends JosmAction implements ActionListener, FocusListener, ItemListener { 45 46 private final TerracerAction terracerAction; -
applications/editors/josm/plugins/terracer/src/terracer/ReverseTerraceAction.java
r27852 r29035 33 33 * they were found. 34 34 */ 35 @SuppressWarnings("serial") 35 36 public class ReverseTerraceAction extends JosmAction { 36 37 -
applications/editors/josm/plugins/terracer/src/terracer/TerracerAction.java
r27852 r29035 58 58 * @author zere 59 59 */ 60 @SuppressWarnings("serial") 60 61 public final class TerracerAction extends JosmAction { 61 62 … … 88 89 89 90 class InvalidUserInputException extends Exception { 90 InvalidUserInputException(String message) {91 /*InvalidUserInputException(String message) { 91 92 super(message); 92 } 93 }*/ 93 94 94 95 InvalidUserInputException() {
Note:
See TracChangeset
for help on using the changeset viewer.