Changes between Version 231 and Version 232 of WikiStart
- Timestamp:
- 08/19/19 14:11:07 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v231 v232 92 92 * The issueValues contains a dictionary with issues. Each issue is indicated by a name (a string), followed by a column (:) and then a dictionary. The dictionary can contain either a discrete valueset or a number valueset 93 93 * a discrete valueset looks like "values", a column and then a list of discrete values (all strings) 94 * a number valueset contains a range of numbers and looks like {{{ {"range":[ "12.2","12.6","0.3"]} }}} so "range:" followed by a list of 3 values. The first value is the minimum value in the range, the second the maximum value in the range, and the third the step value. This example range thus contains 12.2 and 12.5 (the next one would be 12.8 but that is already outside the range).94 * a number valueset contains a range of numbers and looks like {{{ {"range":[12.2,12.6,0.3]} }}} so "range:" followed by a list of 3 values. The first value is the minimum value in the range, the second the maximum value in the range, and the third the step value. This example range thus contains 12.2 and 12.5 (the next one would be 12.8 but that is already outside the range). 95 95 96 96 If you write a java-based party, these objects may already have been converted to Java objects. Please check [source:issuevalue/src/main/java/geniusweb/issuevalue] for conversion details.