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

Last change on this file since 1023 was 1001, checked in by stoecker, 16 years ago

fixed incomplete ckeckin

File size: 561 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 RelationMember member;
11 public final String newRole;
12
13 public RoleCorrection(Relation relation, RelationMember member,
14 String newRole) {
15 this.relation = relation;
16 this.member = member;
17 this.newRole = newRole;
18 }
19}
Note: See TracBrowser for help on using the repository browser.