Changeset 12553 in josm for trunk/src


Ignore:
Timestamp:
2017-08-01T19:41:24+02:00 (7 years ago)
Author:
Don-vip
Message:

javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/ActionParameter.java

    r12547 r12553  
    55 * Abstract class for <i>key=value</i> parameters, used in {@link ParameterizedAction}.
    66 * <p>
    7  * The key ({@link #name}) is a string and the value of class {@link T}. The value can be
     7 * The key ({@link #name}) is a string and the value of class {@code T}. The value can be
    88 * converted to and from a string.
    99 * @param <T> the value type
     
    5555    public static class StringActionParameter extends ActionParameter<String> {
    5656
     57        /**
     58         * Constructs a new {@code StringActionParameter}.
     59         * @param name parameter name (the key)
     60         */
    5761        public StringActionParameter(String name) {
    5862            super(name);
Note: See TracChangeset for help on using the changeset viewer.