Changeset 24 for simplerunner/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:
simplerunner/src/main/java/geniusweb/simplerunner
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • simplerunner/src/main/java/geniusweb/simplerunner/BasicConnection.java

    r21 r24  
    4343         * from us. Must be called first.
    4444         *
    45          * @param handler a Listener<OUT> that can handle send actions.
     45         * @param newhandler a Listener&lt;OUT&gt; that can handle send actions.
    4646         *
    4747         */
  • simplerunner/src/main/java/geniusweb/simplerunner/NegoRunner.java

    r21 r24  
    3636        /**
    3737         *
    38          * @param settings
    39          * @param connectionfactory
    40          * @param logger
     38         * @param settings          the {@link NegoSettings}
     39         * @param connectionfactory the {@link ProtocolToPartyConnFactory}
     40         * @param logger            the {@link Reporter} to log problems
    4141         * @param maxruntime        limit in millisecs. Ignored if 0
    4242         */
     
    5454        }
    5555
     56        /**
     57         *
     58         * @return true if the runner has finished
     59         */
    5660        public boolean isProperlyStopped() {
    5761                return properlyStopped;
     
    8892        /**
    8993         * Separate so that we can intercept this when mocking, as this will crash
    90          * on mocks
     94         * on mocks because {@link #jackson} can not handle mocks.
    9195         *
    92          * @param level
    93          * @param state
     96         * @param level the log {@link Level}
     97         * @param state the {@link NegoState} to log
    9498         */
    9599        protected void logFinal(Level level, NegoState state) {
     
    102106        }
    103107
     108        /**
     109         * The main runner
     110         *
     111         * @param args should have 1 argument, the settings.json file to be used.
     112         * @throws IOException if problem occurs
     113         */
    104114        public static void main(String[] args) throws IOException {
    105115                if (args.length != 1) {
Note: See TracChangeset for help on using the changeset viewer.