Changeset 24979 in osm for applications


Ignore:
Timestamp:
2011-01-05T14:20:29+01:00 (14 years ago)
Author:
oliverw
Message:

Renamed Problem to AddressProblem.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/AddressProblem.java

    r24978 r24979  
    1919import org.openstreetmap.josm.tools.CheckParameterUtil;
    2020
    21 public class Problem implements IProblem {
     21public class AddressProblem implements IProblem {
    2222        private List<ISolution> solutions = null;
    2323        private String description;
     
    3333         * @param type the type
    3434         */
    35         public Problem(IOSMEntity source, String description,
     35        public AddressProblem(IOSMEntity source, String description,
    3636                        List<ISolution> solutions, ProblemType type) {
    3737                super();
     
    4949         * @param solutions This list of solutions.
    5050         */
    51         public Problem(IOSMEntity source, String description, List<ISolution> solutions) {
     51        public AddressProblem(IOSMEntity source, String description, List<ISolution> solutions) {
    5252                this(source, description, solutions, ProblemType.Warning);
    5353        }
     
    5959         * @param description The problem description.
    6060         */
    61         public Problem(IOSMEntity source, String description) {
     61        public AddressProblem(IOSMEntity source, String description) {
    6262                this(source, description, null, ProblemType.Warning);
    6363        }
Note: See TracChangeset for help on using the changeset viewer.