Changeset 24 for issuevalue/src/main
- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- issuevalue/src/main/java/geniusweb/issuevalue
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issuevalue/src/main/java/geniusweb/issuevalue/Bid.java
r9 r24 56 56 57 57 /** 58 * @param issue 58 * @param issue name of the issue 59 59 * @return the value for the given issue, or null if there is no value for 60 60 * the given issue. … … 65 65 66 66 /** 67 * 68 * @param issue 67 * @param issue name of the issue 69 68 * @return true iff the bid contains a value for the given issue. 70 69 */ -
issuevalue/src/main/java/geniusweb/issuevalue/Domain.java
r1 r24 73 73 /** 74 74 * 75 * @param domain the domain to check the bid in75 * @param bid a Bid 76 76 * @return null if this bid is complete, or an error message explaining why 77 77 * the bid is not complete. Complete means that the bid contains a -
issuevalue/src/main/java/geniusweb/issuevalue/ValueSet.java
r1 r24 17 17 * by a String)). 18 18 * 19 * @param <T>type of objects in this value set. We do not implement ValueSet20 * right away because types are lost at runtime. Implementing separate21 * classes for implementing the ValueSet ensures we can get back the type22 * at runtime.immutable. Thread safe.19 * Value is the type of objects in this value set. We do not implement ValueSet 20 * right away because types are lost at runtime. Implementing separate classes 21 * for implementing the ValueSet ensures we can get back the type at runtime. 22 * immutable. Thread safe. 23 23 */ 24 24 @JsonDeserialize(using = ValueSetDeserializer.class) … … 62 62 return codec.treeToValue(node, DiscreteValueSet.class); 63 63 } 64 throw new IllegalArgumentException("Expected 'range' or 'values' property for ValueSet contents"); 64 throw new IllegalArgumentException( 65 "Expected 'range' or 'values' property for ValueSet contents"); 65 66 } 66 67
Note:
See TracChangeset
for help on using the changeset viewer.