Ray Milkey
Committed by Gerrit Code Review

Fixes for Javadoc errors

Change-Id: Icf8fa2918faf071407e33c1fecc2ebac817cc817
......@@ -419,6 +419,7 @@ public class AAA {
* Handles RADIUS packets.
*
* @param radiusPacket RADIUS packet coming from the RADIUS server.
* @throws StateMachineException if an illegal state transition is triggered
*/
protected void handleRadiusPacket(RADIUS radiusPacket) throws StateMachineException {
StateMachine stateMachine = StateMachine.lookupStateMachineById(radiusPacket.getIdentifier());
......
......@@ -56,6 +56,7 @@ public class BgpAttrRouterIdV4 implements BGPValueType {
* Reads the IPv4 Router-ID.
*
* @param cb ChannelBuffer
* @param sType type
* @return object of BgpAttrRouterIdV4
* @throws BGPParseException while parsing BgpAttrNodeRouterId
*/
......
......@@ -56,6 +56,7 @@ public class BgpAttrRouterIdV6 implements BGPValueType {
* Reads the IPv6 Router-ID.
*
* @param cb ChannelBuffer
* @param sType type
* @return object of BgpAttrRouterIdV6
* @throws BGPParseException while parsing BgpAttrRouterIdV6
*/
......
......@@ -107,6 +107,7 @@ public class UiTopoOverlay {
* This default implementation does nothing.
*
* @param pp property panel model of summary data
* @param deviceId device id
*/
public void modifyDeviceDetails(PropertyPanel pp, DeviceId deviceId) {
}
......@@ -117,6 +118,7 @@ public class UiTopoOverlay {
* This default implementation does nothing.
*
* @param pp property panel model of summary data
* @param hostId host id
*/
public void modifyHostDetails(PropertyPanel pp, HostId hostId) {
}
......
......@@ -40,7 +40,7 @@ public final class NodeBadge {
return "{" + code + "}";
}
/** Returns the status code in string form. */
/* Returns the status code in string form. */
public String code() {
return code;
}
......