source: josm/trunk/src/org/openstreetmap/josm/corrector/RoleCorrection.java@ 8126

Last change on this file since 8126 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
File size: 654 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.corrector;
3
4import org.openstreetmap.josm.data.osm.Relation;
5import org.openstreetmap.josm.data.osm.RelationMember;
6
7public class RoleCorrection implements Correction {
8
9 public final Relation relation;
10 public final int position;
11 public final RelationMember member;
12 public final String newRole;
13
14 public RoleCorrection(Relation relation, int position,
15 RelationMember member, String newRole) {
16 this.relation = relation;
17 this.position = position;
18 this.member = member;
19 this.newRole = newRole;
20 }
21}
Note: See TracBrowser for help on using the repository browser.