Fixing javadoc warnings and package grouping.
Change-Id: I6bf0d9e66c27cd1fad1cd0a83491e33939bd7875
Showing
5 changed files
with
34 additions
and
11 deletions
1 | -*.impl | 1 | +org.onosproject.cfg.impl |
2 | -*.impl.* | 2 | +org.onosproject.cluster.impl |
3 | - | 3 | +org.onosproject.core.impl |
4 | +org.onosproject.event.impl | ||
5 | +org.onosproject.net.config.impl | ||
6 | +org.onosproject.net.device.impl | ||
7 | +org.onosproject.net.driver.impl | ||
8 | +org.onosproject.net.edgeservice.impl | ||
9 | +org.onosproject.net.flow.impl | ||
10 | +org.onosproject.net.flowobjective.impl | ||
11 | +org.onosproject.net.flowobjective.impl.composition | ||
12 | +org.onosproject.net.group.impl | ||
13 | +org.onosproject.net.host.impl | ||
14 | +org.onosproject.net.intent.impl | ||
15 | +org.onosproject.net.intent.impl.compiler | ||
16 | +org.onosproject.net.intent.impl.phase | ||
17 | +org.onosproject.net.link.impl | ||
18 | +org.onosproject.net.newresource.impl | ||
19 | +org.onosproject.net.packet.impl | ||
20 | +org.onosproject.net.proxyarp.impl | ||
21 | +org.onosproject.net.resource.impl | ||
22 | +org.onosproject.net.statistic.impl | ||
23 | +org.onosproject.net.topology.impl | ||
4 | org.onosproject.json | 24 | org.onosproject.json |
5 | org.onosproject.json.* | 25 | org.onosproject.json.* |
6 | -:org.onosproject.common.* | 26 | +org.onosproject.common.* |
7 | -org.onosproject.security.* | 27 | +org.onosproject.security.impl | ... | ... |
... | @@ -7,3 +7,7 @@ org.onosproject.incubator.store.tunnel.impl | ... | @@ -7,3 +7,7 @@ org.onosproject.incubator.store.tunnel.impl |
7 | org.onosproject.incubator.net.config.impl | 7 | org.onosproject.incubator.net.config.impl |
8 | org.onosproject.incubator.net.domain.impl | 8 | org.onosproject.incubator.net.domain.impl |
9 | org.onosproject.incubator.store.config.impl | 9 | org.onosproject.incubator.store.config.impl |
10 | +org.onosproject.incubator.net.intf.impl | ||
11 | +org.onosproject.incubator.net.meter.impl | ||
12 | +org.onosproject.incubator.net.resource.label | ||
13 | +org.onosproject.incubator.store.meter.impl | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -101,7 +101,7 @@ public class PIM extends BasePacket { | ... | @@ -101,7 +101,7 @@ public class PIM extends BasePacket { |
101 | /** | 101 | /** |
102 | * Set the PIM version type. Should not change from 2. | 102 | * Set the PIM version type. Should not change from 2. |
103 | * | 103 | * |
104 | - * @param version | 104 | + * @param version PIM version |
105 | */ | 105 | */ |
106 | public void setVersion(byte version) { | 106 | public void setVersion(byte version) { |
107 | this.version = version; | 107 | this.version = version; | ... | ... |
... | @@ -78,7 +78,7 @@ public class PIMAddrGroup { | ... | @@ -78,7 +78,7 @@ public class PIMAddrGroup { |
78 | /** | 78 | /** |
79 | * Set the encoded source address. | 79 | * Set the encoded source address. |
80 | * | 80 | * |
81 | - * @param pfx | 81 | + * @param pfx address prefix |
82 | */ | 82 | */ |
83 | public void setAddr(IpPrefix pfx) { | 83 | public void setAddr(IpPrefix pfx) { |
84 | this.addr = pfx.address(); | 84 | this.addr = pfx.address(); |
... | @@ -145,7 +145,7 @@ public class PIMAddrGroup { | ... | @@ -145,7 +145,7 @@ public class PIMAddrGroup { |
145 | /** | 145 | /** |
146 | * Serialize this group address. | 146 | * Serialize this group address. |
147 | * | 147 | * |
148 | - * @return the serialized address in a buffer. | 148 | + * @return the serialized address in a buffer |
149 | */ | 149 | */ |
150 | public byte[] serialize() { | 150 | public byte[] serialize() { |
151 | int len = getByteSize(); | 151 | int len = getByteSize(); |
... | @@ -168,7 +168,8 @@ public class PIMAddrGroup { | ... | @@ -168,7 +168,8 @@ public class PIMAddrGroup { |
168 | * Deserialze from a ByteBuffer. | 168 | * Deserialze from a ByteBuffer. |
169 | * | 169 | * |
170 | * @param bb the ByteBuffer | 170 | * @param bb the ByteBuffer |
171 | - * @return an encoded PIM group address. | 171 | + * @return an encoded PIM group address |
172 | + * @throws DeserializationException if unable to deserialize the packet data | ||
172 | */ | 173 | */ |
173 | public PIMAddrGroup deserialize(ByteBuffer bb) throws DeserializationException { | 174 | public PIMAddrGroup deserialize(ByteBuffer bb) throws DeserializationException { |
174 | 175 | ... | ... |
-
Please register or login to post a comment