Changeset 29684 in osm
- Timestamp:
- 2013-06-21T01:30:52+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/sds
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/sds/build.xml
r29435 r29684 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <!--3 ** Maintaining versions4 ** ====================5 ** see README.template6 **7 ** Usage8 ** =====9 ** To build it run10 **11 ** > ant12 ** or13 ** > ant clean 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="sds" default="dist" basedir="."> 31 3 … … 33 5 <property name="commit.message" value=""/> 34 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value=" 4549"/>7 <property name="plugin.main.version" value="6010"/> 36 8 37 9 <!-- -
applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/ReadPostprocessor.java
r28160 r29684 63 63 64 64 for (OsmPrimitive p : ds.allPrimitives()) { 65 p. visit(adder);65 p.accept(adder); 66 66 } 67 67 -
applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/SeparateDataStorePlugin.java
r28160 r29684 103 103 protected void learn(IPrimitive prim) { 104 104 if (prim instanceof OsmPrimitive) { 105 ((OsmPrimitive)prim).save(). visit(learnVisitor);105 ((OsmPrimitive)prim).save().accept(learnVisitor); 106 106 } else { 107 prim. visit(learnVisitor);107 prim.accept(learnVisitor); 108 108 } 109 109 }
Note:
See TracChangeset
for help on using the changeset viewer.