Changeset 29854 in osm for applications/editors/josm/plugins/alignways
- Timestamp:
- 2013-08-21T03:47:16+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/alignways
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/alignways/build.xml
r29771 r29854 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <!--3 ** This is a template build file for a JOSM plugin.4 **5 ** Maintaining versions6 ** ====================7 ** see README.template8 **9 ** Usage10 ** =====11 ** To build it run12 **13 ** > ant dist14 **15 ** To install the generated plugin locally (in you default plugin directory) run16 **17 ** > ant install18 **19 ** The generated plugin jar is not automatically available in JOSMs plugin configuration20 ** dialog. You have to check it in first.21 **22 ** Use the ant target 'publish' to check in the plugin and make it available to other23 ** JOSM users:24 ** set the properties commit.message and plugin.main.version25 ** and run26 ** > ant publish27 **28 **29 -->30 2 <project name="alignways" default="dist" basedir="."> 31 3 <!-- enter the SVN commit message --> 32 4 <property name="commit.message" value="AlignWays: moved to Shift-Spacebar due to shortcut confilcts with core. A is too overloaded"/> 33 <!-- 34 enter the *lowest* JOSM version this plugin is currently compatible 35 with 36 --> 37 <property name="plugin.main.version" value="6082"/> 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="6162"/> 38 7 <!-- 39 8 ************************************************ ** should not be -
applications/editors/josm/plugins/alignways/src/com/tilusnet/josm/plugins/alignways/AlignWaysCmdKeepAngles.java
r27619 r29854 7 7 8 8 import java.util.ArrayList; 9 import java.util.Collection;10 9 import java.util.Map; 11 10 … … 251 250 return AlignableStatus.ALGN_VALID; 252 251 } 253 254 255 256 257 private boolean isReferredByNOtherWaySegments(Node node, int numWSeg) {258 259 Collection<WaySegment> coll_ws = algnSeg.getAdjacentWaySegments(node);260 if (coll_ws != null)261 return coll_ws.size() >= numWSeg;262 else263 return false;264 }265 266 252 } -
applications/editors/josm/plugins/alignways/src/com/tilusnet/josm/plugins/alignways/AlignWaysCmdKeepLength.java
r27810 r29854 13 13 import javax.swing.Icon; 14 14 import javax.swing.JOptionPane; 15 import javax.swing.SwingConstants;16 15 17 16 import org.openstreetmap.josm.Main; -
applications/editors/josm/plugins/alignways/src/com/tilusnet/josm/plugins/alignways/AlignWaysDialog.java
r28624 r29854 6 6 import static org.openstreetmap.josm.tools.I18n.tr; 7 7 8 import java.awt.BorderLayout;9 8 import java.awt.Dimension; 10 9 import java.awt.FlowLayout; … … 17 16 import javax.swing.BoxLayout; 18 17 import javax.swing.ButtonGroup; 19 import javax.swing.JCheckBoxMenuItem;20 18 import javax.swing.JLabel; 21 19 import javax.swing.JPanel; -
applications/editors/josm/plugins/alignways/src/com/tilusnet/josm/plugins/alignways/AlignWaysWhatsNewPanel.java
r28420 r29854 36 36 * always regenerated by the Form Editor. 37 37 */ 38 @SuppressWarnings("unchecked")39 38 // <editor-fold defaultstate="collapsed" desc="Generated Code"> 40 39 private void initComponents() {
Note:
See TracChangeset
for help on using the changeset viewer.