Ignore:
Timestamp:
2009-11-24T10:45:04+01:00 (15 years ago)
Author:
stoecker
Message:

i18n updated, fixed files to reduce problems when applying patches, fix #4017

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueResolutionDecision.java

    r2181 r2512  
    1717/**
    1818 * Represents a decision for a conflict due to multiple possible value for a tag.
    19  * 
     19 *
    2020 *
    2121 */
     
    4141     * Creates a new decision for the tag collection <code>tags</code>.
    4242     * All tags must have the same key.
    43      * 
     43     *
    4444     * @param tags the tags. Must not be null.
    4545     * @exception IllegalArgumentException  thrown if tags is null
     
    9090    /**
    9191     * Apply the decision to keep exactly one value
    92      * 
     92     *
    9393     * @param value  the value to keep
    9494     * @throws IllegalArgumentException thrown if value is null
     
    106106    /**
    107107     * sets a new value for this
    108      * 
     108     *
    109109     * @param value the new vlaue
    110110     */
     
    120120    /**
    121121     * marks this as undecided
    122      * 
     122     *
    123123     */
    124124    public void undecide() {
     
    128128    /**
    129129     * Replies the chosen value
    130      * 
     130     *
    131131     * @return the chosen value
    132132     * @throws IllegalStateException thrown if this resolution is not yet decided
     
    145145    /**
    146146     * Replies the list of possible, non empty values
    147      * 
     147     *
    148148     * @return the list of possible, non empty values
    149149     */
     
    158158    /**
    159159     * Replies the key of the tag to be resolved by this resolution
    160      * 
     160     *
    161161     * @return the key of the tag to be resolved by this resolution
    162162     */
     
    167167    /**
    168168     * Replies true if the empty value is a possible value in this resolution
    169      * 
     169     *
    170170     * @return true if the empty value is a possible value in this resolution
    171171     */
     
    176176    /**
    177177     * Replies true, if this resolution has more than 1 possible non-empty values
    178      * 
     178     *
    179179     * @return true, if this resolution has more than 1 possible non-empty values
    180180     */
     
    185185    /**
    186186     * Replies  true if this resolution is decided
    187      * 
     187     *
    188188     * @return true if this resolution is decided
    189189     */
     
    194194    /**
    195195     * Replies the type of the resolution
    196      * 
     196     *
    197197     * @return the type of the resolution
    198198     */
     
    203203    /**
    204204     * Applies the resolution to an {@see OsmPrimitive}
    205      * 
     205     *
    206206     * @param primitive the primitive
    207207     * @throws IllegalStateException thrown if this resolution is not resolved yet
    208      * 
     208     *
    209209     */
    210210    public void applyTo(OsmPrimitive primitive) throws IllegalStateException{
     
    223223    /**
    224224     * Applies this resolution to a collection of primitives
    225      * 
     225     *
    226226     * @param primtives the collection of primitives
    227227     * @throws IllegalStateException thrown if this resolution is not resolved yet
     
    239239    /**
    240240     * Builds a change command for applying this resolution to a primitive
    241      * 
     241     *
    242242     * @param primitive  the primitive
    243243     * @return the change command
     
    258258    /**
    259259     * Builds a change command for applying this resolution to a collection of primitives
    260      * 
     260     *
    261261     * @param primitives  the collection of primitives
    262262     * @return the change command
     
    278278     * Replies a tag representing the current resolution. Null, if this resolution is not resolved
    279279     * yet.
    280      * 
     280     *
    281281     * @return a tag representing the current resolution. Null, if this resolution is not resolved
    282282     * yet
Note: See TracChangeset for help on using the changeset viewer.