Changeset 24 for issuevalue/src


Ignore:
Timestamp:
10/06/20 13:12:20 (4 years ago)
Author:
bart
Message:

Fixes an issue with processing maxPower of a vote. Javadoc maven plugin now uses latest version.

Location:
issuevalue/src/main/java/geniusweb/issuevalue
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issuevalue/src/main/java/geniusweb/issuevalue/Bid.java

    r9 r24  
    5656
    5757        /**
    58          * @param issue
     58         * @param issue name of the issue
    5959         * @return the value for the given issue, or null if there is no value for
    6060         *         the given issue.
     
    6565
    6666        /**
    67          *
    68          * @param issue
     67         * @param issue name of the issue
    6968         * @return true iff the bid contains a value for the given issue.
    7069         */
  • issuevalue/src/main/java/geniusweb/issuevalue/Domain.java

    r1 r24  
    7373        /**
    7474         *
    75          * @param domain the domain to check the bid in
     75         * @param bid a Bid
    7676         * @return null if this bid is complete, or an error message explaining why
    7777         *         the bid is not complete. Complete means that the bid contains a
  • issuevalue/src/main/java/geniusweb/issuevalue/ValueSet.java

    r1 r24  
    1717 * by a String)).
    1818 *
    19  * @param <T> type of objects in this value set. We do not implement ValueSet
    20  *        right away because types are lost at runtime. Implementing separate
    21  *        classes for implementing the ValueSet ensures we can get back the type
    22  *        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.
    2323 */
    2424@JsonDeserialize(using = ValueSetDeserializer.class)
     
    6262                        return codec.treeToValue(node, DiscreteValueSet.class);
    6363                }
    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");
    6566        }
    6667
Note: See TracChangeset for help on using the changeset viewer.