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

Revision 3083, 654 bytes checked in by bastiK, 2 years ago (diff)

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
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.