Changeset 16620 in osm for applications/editors/josm/plugins/Create_grid_of_ways
- Timestamp:
- 2009-07-21T20:29:20+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/Create_grid_of_ways
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/Create_grid_of_ways
- Property svn:ignore
-
old new 1 1 build 2 3 bin
-
- Property svn:ignore
-
applications/editors/josm/plugins/Create_grid_of_ways/.classpath
r14370 r16620 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <classpath> 3 <classpathentry kind="src" output="build"path="src"/>4 <classpathentry kind=" var" path="JRE_LIB" rootpath="JRE_SRCROOT" sourcepath="JRE_SRC"/>5 <classpathentry kind="lib" path="/home/chamorro/workspace/JOSM/dist/josm-custom.jar" sourcepath="/JOSM"/>3 <classpathentry kind="src" path="src"/> 4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 5 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 6 6 <classpathentry kind="output" path="bin"/> 7 7 </classpath> -
applications/editors/josm/plugins/Create_grid_of_ways/.project
r14370 r16620 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <projectDescription> 3 <name> Create_grid_of_ways</name>3 <name>JOSM-create_grid_of_ways</name> 4 4 <comment></comment> 5 5 <projects> … … 15 15 <nature>org.eclipse.jdt.core.javanature</nature> 16 16 </natures> 17 <linkedResources>18 <link>19 <name>build</name>20 <type>2</type>21 <location>/home/chamorro/workspace/Create_grid_of_ways/build</location>22 </link>23 <link>24 <name>src</name>25 <type>2</type>26 <location>/home/chamorro/workspace/Create_grid_of_ways/src</location>27 </link>28 </linkedResources>29 17 </projectDescription> -
applications/editors/josm/plugins/Create_grid_of_ways/build.xml
r16290 r16620 26 26 <attribute name="Plugin-Description" value="Create a grid of ways."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/Create_grid_of_ways"/> 28 <attribute name="Plugin-Mainversion" value="1 722"/>28 <attribute name="Plugin-Mainversion" value="1815"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/Create_grid_of_ways/src/CreateGridOfWaysPlugin/CreateGridOfWaysAction.java
r16290 r16620 7 7 import java.util.Collection; 8 8 import java.util.LinkedList; 9 9 10 import javax.swing.JOptionPane; 10 11 … … 14 15 import org.openstreetmap.josm.command.Command; 15 16 import org.openstreetmap.josm.command.SequenceCommand; 17 import org.openstreetmap.josm.data.coor.LatLon; 16 18 import org.openstreetmap.josm.data.osm.Node; 17 19 import org.openstreetmap.josm.data.osm.OsmPrimitive; 18 20 import org.openstreetmap.josm.data.osm.Way; 19 21 import org.openstreetmap.josm.tools.Shortcut; 20 import org.openstreetmap.josm.data.coor.LatLon;21 22 22 23 /** … … 46 47 */ 47 48 public void actionPerformed(ActionEvent e) { 48 Collection<OsmPrimitive> sel = Main. ds.getSelected();49 Collection<OsmPrimitive> sel = Main.main.getCurrentDataSet().getSelected(); 49 50 Collection<Node> nodesWay1 = new LinkedList<Node>(); 50 51 Collection<Node> nodesWay2 = new LinkedList<Node>();
Note:
See TracChangeset
for help on using the changeset viewer.