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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/geniusweb/partiesserver/repository/RunningParty.java

    r18 r21  
    1010
    1111import geniusweb.actions.PartyId;
    12 import geniusweb.connection.DefaultConnection;
    1312import geniusweb.inform.Inform;
    1413import geniusweb.partiesserver.RunningPartiesUpdater;
     
    5251         * @param party the new party
    5352         * @param id    the new id for the party.
     53         * @param name  the name, this should match the filename
    5454         * @param start the start date for this party. Usually set to current time.
    5555         * @param end   the end date for this party
     
    7272
    7373        /**
    74          * Create instance from availableparty
    75          *
    7674         * @param availableparty the {@link AvailableParty}
    77          * @param name           the (file)name
    7875         * @param maxlifetimems  the maximum life time for this party (ms). The
    7976         *                       party will be killed and removed after this point.
     
    8178         *                       time plus the worst time to actual start up of the
    8279         *                       negotiation
    83          * @throws IllegalAccessException
    84          * @throws InstantiationException
     80         * @return a new RunningParty being an instance of availableparty
     81         * @throws IllegalAccessException if the class or its nullary constructor is
     82         *                                not accessible.
     83         *
     84         * @throws InstantiationException if this Class represents an abstract
     85         *                                class, an interface, an array class, a
     86         *                                primitive type, or void; or if the class
     87         *                                has no nullary constructor; or if the
     88         *                                instantiation fails for some other reason.
     89         *
    8590         */
    8691        public static RunningParty create(AvailableParty availableparty,
     
    104109         *                     {@link RunningPartiesUpdater} will keep an eye on the
    105110         *                     time and handle removal after time is up.
    106          *
    107          */
    108         public static RunningParty create(Party party, String name,
     111         * @return new RunningParty created from the Party instance.
     112         *
     113         */
     114        private static RunningParty create(Party party, String name,
    109115                        long maxRunTimeMS) {
    110116                if (maxRunTimeMS <= 0) {
     
    133139
    134140        /**
    135          * The name, this should match the filename in the repo (without the .jar).
    136          *
    137          * @return
     141         * @return The name, this should match the filename in the repo (without the
     142         *         .jar).
     143         *
    138144         */
    139145        public String getName() {
     
    207213
    208214        /**
    209          * You must have called {@link #connect(DefaultConnection)} before calling
     215         * You must have called {@link #withConnection(PartySocket)} before calling
    210216         * this.
    211217         *
    212          * @param info
     218         * @param info the {@link Inform} to be sent to the {@link #connection}
    213219         */
    214220        public void inform(Inform info) {
Note: See TracChangeset for help on using the changeset viewer.