Fixing javadoc warnings and package grouping.

Change-Id: I6bf0d9e66c27cd1fad1cd0a83491e33939bd7875
This commit is contained in:
Thomas Vachuska 2015-09-10 15:17:02 -07:00
parent 2c59acfdc9
commit b9c7ea63ad
5 changed files with 34 additions and 11 deletions

View File

@ -1,4 +1,2 @@
org.onosproject org.onosproject
org.onosproject.* org.onosproject.*
org.onosproject.rest
org.onosproject.security

View File

@ -1,7 +1,27 @@
*.impl org.onosproject.cfg.impl
*.impl.* org.onosproject.cluster.impl
org.onosproject.core.impl
org.onosproject.event.impl
org.onosproject.net.config.impl
org.onosproject.net.device.impl
org.onosproject.net.driver.impl
org.onosproject.net.edgeservice.impl
org.onosproject.net.flow.impl
org.onosproject.net.flowobjective.impl
org.onosproject.net.flowobjective.impl.composition
org.onosproject.net.group.impl
org.onosproject.net.host.impl
org.onosproject.net.intent.impl
org.onosproject.net.intent.impl.compiler
org.onosproject.net.intent.impl.phase
org.onosproject.net.link.impl
org.onosproject.net.newresource.impl
org.onosproject.net.packet.impl
org.onosproject.net.proxyarp.impl
org.onosproject.net.resource.impl
org.onosproject.net.statistic.impl
org.onosproject.net.topology.impl
org.onosproject.json org.onosproject.json
org.onosproject.json.* org.onosproject.json.*
:org.onosproject.common.* org.onosproject.common.*
org.onosproject.security.* org.onosproject.security.impl

View File

@ -7,3 +7,7 @@ org.onosproject.incubator.store.tunnel.impl
org.onosproject.incubator.net.config.impl org.onosproject.incubator.net.config.impl
org.onosproject.incubator.net.domain.impl org.onosproject.incubator.net.domain.impl
org.onosproject.incubator.store.config.impl org.onosproject.incubator.store.config.impl
org.onosproject.incubator.net.intf.impl
org.onosproject.incubator.net.meter.impl
org.onosproject.incubator.net.resource.label
org.onosproject.incubator.store.meter.impl

View File

@ -101,7 +101,7 @@ public class PIM extends BasePacket {
/** /**
* Set the PIM version type. Should not change from 2. * Set the PIM version type. Should not change from 2.
* *
* @param version * @param version PIM version
*/ */
public void setVersion(byte version) { public void setVersion(byte version) {
this.version = version; this.version = version;

View File

@ -78,7 +78,7 @@ public class PIMAddrGroup {
/** /**
* Set the encoded source address. * Set the encoded source address.
* *
* @param pfx * @param pfx address prefix
*/ */
public void setAddr(IpPrefix pfx) { public void setAddr(IpPrefix pfx) {
this.addr = pfx.address(); this.addr = pfx.address();
@ -145,7 +145,7 @@ public class PIMAddrGroup {
/** /**
* Serialize this group address. * Serialize this group address.
* *
* @return the serialized address in a buffer. * @return the serialized address in a buffer
*/ */
public byte[] serialize() { public byte[] serialize() {
int len = getByteSize(); int len = getByteSize();
@ -168,7 +168,8 @@ public class PIMAddrGroup {
* Deserialze from a ByteBuffer. * Deserialze from a ByteBuffer.
* *
* @param bb the ByteBuffer * @param bb the ByteBuffer
* @return an encoded PIM group address. * @return an encoded PIM group address
* @throws DeserializationException if unable to deserialize the packet data
*/ */
public PIMAddrGroup deserialize(ByteBuffer bb) throws DeserializationException { public PIMAddrGroup deserialize(ByteBuffer bb) throws DeserializationException {