Changeset 30841 in osm for applications
- Timestamp:
- 2014-12-11T15:17:30+01:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/reltoolbox/src/relcontext
- Files:
-
- 3 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/ChosenRelation.java
-
Property svn:eol-style
set to
native
-
Property svn:eol-style
set to
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/ChosenRelationComponent.java
-
Property svn:eol-style
set to
native
-
Property svn:eol-style
set to
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/ChosenRelationListener.java
-
Property svn:eol-style
set to
native
-
Property svn:eol-style
set to
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/ExtraNameFormatHook.java
-
Property svn:eol-style
set to
native
-
Property svn:eol-style
set to
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/RelContextDialog.java
-
Property svn:eol-style
set to
native
r30738 r30841 89 89 import relcontext.actions.FindRelationAction; 90 90 import relcontext.actions.ReconstructPolygonAction; 91 import relcontext.actions.ReconstructRouteAction; 91 92 import relcontext.actions.RelationHelpAction; 92 93 import relcontext.actions.SelectInRelationPanelAction; … … 424 425 private static Map<String, List<String>> loadRoles() { 425 426 Map<String, List<String>> result = new HashMap<>(); 427 426 428 ClassLoader classLoader = RelContextDialog.class.getClassLoader(); 427 429 try ( … … 526 528 add(new DownloadParentsAction(chosenRelation)); 527 529 add(new ReconstructPolygonAction(chosenRelation)); 530 add(new ReconstructRouteAction(chosenRelation)); 528 531 addSeparator(); 529 532 add(new SelectInRelationPanelAction(chosenRelation)); -
Property svn:eol-style
set to
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/RelContextPlugin.java
-
Property svn:eol-style
set to
native
-
Property svn:eol-style
set to
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/StaticChosenRelation.java
-
Property svn:eol-style
set to
native
-
Property svn:eol-style
set to
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/SortAndFixAction.java
r30738 r30841 22 22 import relcontext.relationfix.MultipolygonFixer; 23 23 import relcontext.relationfix.NothingFixer; 24 import relcontext.relationfix.PublicTransportFixer; 24 25 import relcontext.relationfix.RelationFixer; 25 26 … … 44 45 fixers.add(new MultipolygonFixer()); // multipolygon 45 46 fixers.add(new AssociatedStreetFixer()); //associatedStreet 47 fixers.add(new PublicTransportFixer()); //public_transport 46 48 47 49 for(RelationFixer fix : fixers) { -
applications/editors/josm/plugins/reltoolbox/src/relcontext/possible_roles.txt
-
Property svn:eol-style
set to
native
r26802 r30841 1 1 boundary: admin_centre, label, subarea 2 route: stop, platform, forward, backward, stop_exit_only, stop_entry_only, platform_exit_only, platform_entry_only 2 route: forward, backward, stop, platform, stop_exit_only, stop_entry_only, platform_exit_only, platform_entry_only 3 public_transport: stop, platform 3 4 restriction: from, to, via, location_hint 4 5 enforcement: device, from, to, force -
Property svn:eol-style
set to
Note:
See TracChangeset
for help on using the changeset viewer.