Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Ray Milkey
2016-03-04 08:46:13 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d7909ca0e3ffef43952d0d90aaed1dce8bfcd7fe
d7909ca0
1 parent
b8889b89
Fixes for javadoc errors
Change-Id: Idb4f08df4e2c794528b1f359f3fef6c4850eabc8
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
0 deletions
core/api/src/main/java/org/onosproject/store/service/AsyncAtomicCounterMap.java
core/api/src/main/java/org/onosproject/store/service/AtomicCounterMap.java
core/api/src/main/java/org/onosproject/ui/chart/ChartModel.java
core/net/src/main/java/org/onosproject/net/newresource/impl/ResourceNetworkConfigListener.java
core/api/src/main/java/org/onosproject/store/service/AsyncAtomicCounterMap.java
View file @
d7909ca
...
...
@@ -26,6 +26,7 @@ public interface AsyncAtomicCounterMap<K> {
* Increments by one the value currently associated with key, and returns the new value.
*
* @param key key with which the specified value is to be associated
* @return incremented value
*/
CompletableFuture
<
Long
>
incrementAndGet
(
K
key
);
...
...
core/api/src/main/java/org/onosproject/store/service/AtomicCounterMap.java
View file @
d7909ca
...
...
@@ -24,6 +24,7 @@ public interface AtomicCounterMap<K> {
* Increments by one the value currently associated with key, and returns the new value.
*
* @param key key with which the specified value is to be associated
* @return incremented value
*/
long
incrementAndGet
(
K
key
);
...
...
core/api/src/main/java/org/onosproject/ui/chart/ChartModel.java
View file @
d7909ca
...
...
@@ -42,6 +42,7 @@ public class ChartModel {
/**
* Constructs a chart model with initialized series set.
*
* @param size datapoints size
* @param series a set of series
*/
public
ChartModel
(
int
size
,
String
...
series
)
{
...
...
core/net/src/main/java/org/onosproject/net/newresource/impl/ResourceNetworkConfigListener.java
View file @
d7909ca
...
...
@@ -60,6 +60,7 @@ final class ResourceNetworkConfigListener implements NetworkConfigListener {
*
* @param adminService {@link ResourceAdminService}
* @param cfgService {@link NetworkConfigService}
* @param mastershipService {@link MastershipService}
* @param executor Executor to use.
*/
ResourceNetworkConfigListener
(
ResourceAdminService
adminService
,
NetworkConfigService
cfgService
,
...
...
Please
register
or
login
to post a comment