commit | a8fae0158d38c699eaab6a125963945fa63cc19e | [log] [tgz] |
---|---|---|
author | Sho SHIMIZU <shimizu.sho@jp.fujitsu.com> | Mon Aug 18 10:57:30 2014 -0700 |
committer | Gerrit Code Review <gerrit2@localhost> | Mon Aug 18 11:31:29 2014 -0700 |
tree | 9efa5278c376a10e0b08d14b1f960e4a7fae240c | |
parent | cb34f3888f90a94f44674545c87c30963ea3cc70 [diff] |
Revise Javadoc Change-Id: Ic100d0c0a495d6d832f2f4108aa1da1189cc3117
diff --git a/src/main/java/net/onrc/onos/core/newintent/IdBlockAllocatorBasedIntentIdGenerator.java b/src/main/java/net/onrc/onos/core/newintent/IdBlockAllocatorBasedIntentIdGenerator.java index 29f14a1..2e09698 100644 --- a/src/main/java/net/onrc/onos/core/newintent/IdBlockAllocatorBasedIntentIdGenerator.java +++ b/src/main/java/net/onrc/onos/core/newintent/IdBlockAllocatorBasedIntentIdGenerator.java
@@ -18,9 +18,10 @@ private IdBlock idBlock; /** - * Constructs a {@link IdBlockAllocatorBasedIntentIdGenerator}. + * Constructs an intent ID generator, which uses the specified ID block allocator + * to generate a global unique intent ID. * - * @param allocator ID block allocator, which is used in this class + * @param allocator the ID block allocator to use for generating intent IDs */ public IdBlockAllocatorBasedIntentIdGenerator(IdBlockAllocator allocator) { this.allocator = checkNotNull(allocator);