Changeset 5964 in josm for trunk/data/defaultpresets.xml
- Timestamp:
- 2013-05-17T01:58:59+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/defaultpresets.xml
r5950 r5964 48 48 text: fixed label to display 49 49 values: comma separated list of values 50 values_from: to use instead of "values" if the list of values has to be obtained with a Java method 51 of this form: public static String[] getValues(); 52 The value must be: "full.package.name.ClassName#methodName" 50 53 display_values: comma separated list of values to be displayed instead of the 51 54 database values, order and number must be equal to values … … 67 70 will also be used to separate selected values in the tag. 68 71 values: delimiter-separated list of values (delimiter can be escaped with backslash) 72 values_from: to use instead of "values" if the list of values has to be obtained with a Java method 73 of this form: public static String[] getValues(); 74 The value must be: "full.package.name.ClassName#methodName" 69 75 rows: specify the number of rows to display (default -1) 70 76 display_values: delimiter-separated list of values to be displayed instead of the … … 6052 6058 <text key="addr:city" text="City name" use_last_as_default="force" match="key" /> 6053 6059 <text key="addr:postcode" text="Post code" use_last_as_default="force" match="key" /> 6054 <combo key="addr:country" text="Country code" values ="AT,CH,DE,FR,GB,IT,RS,US" use_last_as_default="force" match="key" />6060 <combo key="addr:country" text="Country code" values_from="java.util.Locale#getISOCountries" use_last_as_default="force" match="key" /> 6055 6061 </optional> 6056 6062 </item>
Note:
See TracChangeset
for help on using the changeset viewer.