Changeset 24979 in osm
- Timestamp:
- 2011-01-05T14:20:29+01:00 (14 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/AddressProblem.java
r24978 r24979 19 19 import org.openstreetmap.josm.tools.CheckParameterUtil; 20 20 21 public class Problem implements IProblem {21 public class AddressProblem implements IProblem { 22 22 private List<ISolution> solutions = null; 23 23 private String description; … … 33 33 * @param type the type 34 34 */ 35 public Problem(IOSMEntity source, String description,35 public AddressProblem(IOSMEntity source, String description, 36 36 List<ISolution> solutions, ProblemType type) { 37 37 super(); … … 49 49 * @param solutions This list of solutions. 50 50 */ 51 public Problem(IOSMEntity source, String description, List<ISolution> solutions) {51 public AddressProblem(IOSMEntity source, String description, List<ISolution> solutions) { 52 52 this(source, description, solutions, ProblemType.Warning); 53 53 } … … 59 59 * @param description The problem description. 60 60 */ 61 public Problem(IOSMEntity source, String description) {61 public AddressProblem(IOSMEntity source, String description) { 62 62 this(source, description, null, ProblemType.Warning); 63 63 }
Note:
See TracChangeset
for help on using the changeset viewer.