Changeset 18503 in osm for applications/editors/josm/plugins/czechaddress
- Timestamp:
- 2009-11-07T17:23:17+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/czechaddress
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/czechaddress/build.xml
r18413 r18503 52 52 <attribute name="Plugin-Description" value="Creating and handling address nodes and buildings within Czech Republic."/> 53 53 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/Cz:JOSM/Plugins/CzechAddress"/> 54 <attribute name="Plugin-Mainversion" value="2 381"/>54 <attribute name="Plugin-Mainversion" value="2401"/> 55 55 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 56 56 </manifest> -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/intelligence/Capitalizator.java
r18409 r18503 1 1 package org.openstreetmap.josm.plugins.czechaddress.intelligence; 2 2 3 import java.util.Collection; 3 4 import java.util.HashMap; 4 5 import java.util.List; … … 12 13 import java.util.logging.Level; 13 14 import java.util.logging.Logger; 15 14 16 import org.openstreetmap.josm.data.osm.OsmPrimitive; 15 17 import org.openstreetmap.josm.plugins.czechaddress.StringUtils; … … 27 29 Logger logger = Logger.getLogger(Capitalizator.class.getName()); 28 30 29 public Capitalizator( List<OsmPrimitive> prims, List<Street> elems) {31 public Capitalizator(Collection<OsmPrimitive> prims, List<Street> elems) { 30 32 31 33 int expResults = elems.size()/2; … … 58 60 59 61 private AddressElement elem; 60 private List<OsmPrimitive> prims;62 private Collection<OsmPrimitive> prims; 61 63 62 public StreetMatcher(AddressElement elem, List<OsmPrimitive> prims) {64 public StreetMatcher(AddressElement elem, Collection<OsmPrimitive> prims) { 63 65 this.elem = elem; 64 66 this.prims = prims;
Note:
See TracChangeset
for help on using the changeset viewer.