Changeset 34584 in osm for applications/editors
- Timestamp:
- 2018-08-19T22:04:14+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/terracer
- Files:
-
- 4 added
- 7 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/terracer/build.xml
r34562 r34584 4 4 <property name="plugin.main.version" value="14153"/> 5 5 <property name="plugin.author" value="Matt Amos"/> 6 <property name="plugin.class" value=" terracer.TerracerPlugin"/>6 <property name="plugin.class" value="org.openstreetmap.josm.plugins.terracer.TerracerPlugin"/> 7 7 <property name="plugin.description" value="Make terraced houses out of single blocks."/> 8 8 <property name="plugin.icon" value="images/terrace.png"/> -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/HouseNumberInputDialog.java
r34562 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer;2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/HouseNumberInputHandler.java
r34562 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer;2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 282 282 if (e.getSource() instanceof JButton) { 283 283 JButton button = (JButton) e.getSource(); 284 if (tr("OK").equals(button.getActionCommand()) & button.isEnabled()) {284 if (tr("OK").equals(button.getActionCommand()) && button.isEnabled()) { 285 285 if (validateInput()) { 286 286 saveValues(); -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/ReverseTerraceAction.java
r34562 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer;2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/TerracerAction.java
r34562 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer;2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/TerracerPlugin.java
r33579 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer;2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import org.openstreetmap.josm.gui.MainApplication; -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/TerracerRuntimeException.java
r33077 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer;2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 /**
Note:
See TracChangeset
for help on using the changeset viewer.