Showing
3 changed files
with
6 additions
and
6 deletions
... | @@ -6,8 +6,9 @@ package org.onlab.onos.of.controller; | ... | @@ -6,8 +6,9 @@ package org.onlab.onos.of.controller; |
6 | public interface PacketListener { | 6 | public interface PacketListener { |
7 | 7 | ||
8 | /** | 8 | /** |
9 | - * Handle the packet. | 9 | + * Handles the packet. |
10 | - * @param pktCtx the packet context ({@link } | 10 | + * |
11 | + * @param pktCtx the packet context | ||
11 | */ | 12 | */ |
12 | public void handlePacket(PacketContext pktCtx); | 13 | public void handlePacket(PacketContext pktCtx); |
13 | } | 14 | } | ... | ... |
... | @@ -45,7 +45,7 @@ public interface RoleHandler { | ... | @@ -45,7 +45,7 @@ public interface RoleHandler { |
45 | * | 45 | * |
46 | * @param role | 46 | * @param role |
47 | * @throws IOException | 47 | * @throws IOException |
48 | - * @returns false if and only if the switch does not support role-request | 48 | + * @return false if and only if the switch does not support role-request |
49 | * messages, according to the switch driver; true otherwise. | 49 | * messages, according to the switch driver; true otherwise. |
50 | */ | 50 | */ |
51 | public boolean sendRoleRequest(RoleState role, RoleRecvStatus exp) | 51 | public boolean sendRoleRequest(RoleState role, RoleRecvStatus exp) |
... | @@ -53,8 +53,7 @@ public interface RoleHandler { | ... | @@ -53,8 +53,7 @@ public interface RoleHandler { |
53 | 53 | ||
54 | /** | 54 | /** |
55 | * Extract the role information from an OF1.3 Role Reply Message. | 55 | * Extract the role information from an OF1.3 Role Reply Message. |
56 | - * @param h | 56 | + * @param rrmsg role reply message |
57 | - * @param rrmsg | ||
58 | * @return RoleReplyInfo object | 57 | * @return RoleReplyInfo object |
59 | * @throws SwitchStateException | 58 | * @throws SwitchStateException |
60 | */ | 59 | */ | ... | ... |
-
Please register or login to post a comment