Ray Milkey

Fixes for javadoc errors

Change-Id: Idb4f08df4e2c794528b1f359f3fef6c4850eabc8
...@@ -26,6 +26,7 @@ public interface AsyncAtomicCounterMap<K> { ...@@ -26,6 +26,7 @@ public interface AsyncAtomicCounterMap<K> {
26 * Increments by one the value currently associated with key, and returns the new value. 26 * Increments by one the value currently associated with key, and returns the new value.
27 * 27 *
28 * @param key key with which the specified value is to be associated 28 * @param key key with which the specified value is to be associated
29 + * @return incremented value
29 */ 30 */
30 CompletableFuture<Long> incrementAndGet(K key); 31 CompletableFuture<Long> incrementAndGet(K key);
31 32
......
...@@ -24,6 +24,7 @@ public interface AtomicCounterMap<K> { ...@@ -24,6 +24,7 @@ public interface AtomicCounterMap<K> {
24 * Increments by one the value currently associated with key, and returns the new value. 24 * Increments by one the value currently associated with key, and returns the new value.
25 * 25 *
26 * @param key key with which the specified value is to be associated 26 * @param key key with which the specified value is to be associated
27 + * @return incremented value
27 */ 28 */
28 long incrementAndGet(K key); 29 long incrementAndGet(K key);
29 30
......
...@@ -42,6 +42,7 @@ public class ChartModel { ...@@ -42,6 +42,7 @@ public class ChartModel {
42 /** 42 /**
43 * Constructs a chart model with initialized series set. 43 * Constructs a chart model with initialized series set.
44 * 44 *
45 + * @param size datapoints size
45 * @param series a set of series 46 * @param series a set of series
46 */ 47 */
47 public ChartModel(int size, String... series) { 48 public ChartModel(int size, String... series) {
......
...@@ -60,6 +60,7 @@ final class ResourceNetworkConfigListener implements NetworkConfigListener { ...@@ -60,6 +60,7 @@ final class ResourceNetworkConfigListener implements NetworkConfigListener {
60 * 60 *
61 * @param adminService {@link ResourceAdminService} 61 * @param adminService {@link ResourceAdminService}
62 * @param cfgService {@link NetworkConfigService} 62 * @param cfgService {@link NetworkConfigService}
63 + * @param mastershipService {@link MastershipService}
63 * @param executor Executor to use. 64 * @param executor Executor to use.
64 */ 65 */
65 ResourceNetworkConfigListener(ResourceAdminService adminService, NetworkConfigService cfgService, 66 ResourceNetworkConfigListener(ResourceAdminService adminService, NetworkConfigService cfgService,
......