Changeset 12553 in josm for trunk/src/org
- Timestamp:
- 2017-08-01T19:41:24+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ActionParameter.java
r12547 r12553 5 5 * Abstract class for <i>key=value</i> parameters, used in {@link ParameterizedAction}. 6 6 * <p> 7 * The key ({@link #name}) is a string and the value of class {@ linkT}. The value can be7 * The key ({@link #name}) is a string and the value of class {@code T}. The value can be 8 8 * converted to and from a string. 9 9 * @param <T> the value type … … 55 55 public static class StringActionParameter extends ActionParameter<String> { 56 56 57 /** 58 * Constructs a new {@code StringActionParameter}. 59 * @param name parameter name (the key) 60 */ 57 61 public StringActionParameter(String name) { 58 62 super(name);
Note:
See TracChangeset
for help on using the changeset viewer.