Ray Milkey
Committed by Gerrit Code Review

Fixes for Javadoc errors

Change-Id: Icf8fa2918faf071407e33c1fecc2ebac817cc817
...@@ -419,6 +419,7 @@ public class AAA { ...@@ -419,6 +419,7 @@ public class AAA {
419 * Handles RADIUS packets. 419 * Handles RADIUS packets.
420 * 420 *
421 * @param radiusPacket RADIUS packet coming from the RADIUS server. 421 * @param radiusPacket RADIUS packet coming from the RADIUS server.
422 + * @throws StateMachineException if an illegal state transition is triggered
422 */ 423 */
423 protected void handleRadiusPacket(RADIUS radiusPacket) throws StateMachineException { 424 protected void handleRadiusPacket(RADIUS radiusPacket) throws StateMachineException {
424 StateMachine stateMachine = StateMachine.lookupStateMachineById(radiusPacket.getIdentifier()); 425 StateMachine stateMachine = StateMachine.lookupStateMachineById(radiusPacket.getIdentifier());
......
...@@ -56,6 +56,7 @@ public class BgpAttrRouterIdV4 implements BGPValueType { ...@@ -56,6 +56,7 @@ public class BgpAttrRouterIdV4 implements BGPValueType {
56 * Reads the IPv4 Router-ID. 56 * Reads the IPv4 Router-ID.
57 * 57 *
58 * @param cb ChannelBuffer 58 * @param cb ChannelBuffer
59 + * @param sType type
59 * @return object of BgpAttrRouterIdV4 60 * @return object of BgpAttrRouterIdV4
60 * @throws BGPParseException while parsing BgpAttrNodeRouterId 61 * @throws BGPParseException while parsing BgpAttrNodeRouterId
61 */ 62 */
......
...@@ -56,6 +56,7 @@ public class BgpAttrRouterIdV6 implements BGPValueType { ...@@ -56,6 +56,7 @@ public class BgpAttrRouterIdV6 implements BGPValueType {
56 * Reads the IPv6 Router-ID. 56 * Reads the IPv6 Router-ID.
57 * 57 *
58 * @param cb ChannelBuffer 58 * @param cb ChannelBuffer
59 + * @param sType type
59 * @return object of BgpAttrRouterIdV6 60 * @return object of BgpAttrRouterIdV6
60 * @throws BGPParseException while parsing BgpAttrRouterIdV6 61 * @throws BGPParseException while parsing BgpAttrRouterIdV6
61 */ 62 */
......
...@@ -107,6 +107,7 @@ public class UiTopoOverlay { ...@@ -107,6 +107,7 @@ public class UiTopoOverlay {
107 * This default implementation does nothing. 107 * This default implementation does nothing.
108 * 108 *
109 * @param pp property panel model of summary data 109 * @param pp property panel model of summary data
110 + * @param deviceId device id
110 */ 111 */
111 public void modifyDeviceDetails(PropertyPanel pp, DeviceId deviceId) { 112 public void modifyDeviceDetails(PropertyPanel pp, DeviceId deviceId) {
112 } 113 }
...@@ -117,6 +118,7 @@ public class UiTopoOverlay { ...@@ -117,6 +118,7 @@ public class UiTopoOverlay {
117 * This default implementation does nothing. 118 * This default implementation does nothing.
118 * 119 *
119 * @param pp property panel model of summary data 120 * @param pp property panel model of summary data
121 + * @param hostId host id
120 */ 122 */
121 public void modifyHostDetails(PropertyPanel pp, HostId hostId) { 123 public void modifyHostDetails(PropertyPanel pp, HostId hostId) {
122 } 124 }
......
...@@ -40,7 +40,7 @@ public final class NodeBadge { ...@@ -40,7 +40,7 @@ public final class NodeBadge {
40 return "{" + code + "}"; 40 return "{" + code + "}";
41 } 41 }
42 42
43 - /** Returns the status code in string form. */ 43 + /* Returns the status code in string form. */
44 public String code() { 44 public String code() {
45 return code; 45 return code;
46 } 46 }
......