Ignore:
Timestamp:
2014-01-19T15:33:15+01:00 (11 years ago)
Author:
Don-vip
Message:

update javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/projection/SingleProjectionChoice.java

    r5548 r6733  
    1818
    1919    /**
    20      * Constructor.
     20     * Constructs a new {@code SingleProjectionChoice}.
    2121     *
    2222     * @param name short name of the projection choice as shown in the GUI
     
    3030    }
    3131
     32    /**
     33     * Constructs a new {@code SingleProjectionChoice}.
     34     *
     35     * @param name short name of the projection choice as shown in the GUI
     36     * @param id unique identifier for the projection choice, e.g. "core:thisproj"
     37     * @param code the unique identifier for the projection, e.g. "EPSG:1234"
     38     */
    3239    public SingleProjectionChoice(String name, String id, String code) {
    3340        super(name, id);
     
    5562
    5663    @Override
    57     public String toString() {
    58         return name;
    59     }
    60 
    61     @Override
    6264    public Collection<String> getPreferencesFromCode(String code) {
    6365        if (code.equals(this.code))
Note: See TracChangeset for help on using the changeset viewer.