wei wei
Committed by Gerrit Code Review

Java-doc improvement

Change-Id: I9737cd0e636d94a829c8c79440654c8fe1b55e36
...@@ -26,7 +26,8 @@ public class DefaultLabel extends AbstractModel implements Label { ...@@ -26,7 +26,8 @@ public class DefaultLabel extends AbstractModel implements Label {
26 * Creates a label attributed to the specified provider (may be null). 26 * Creates a label attributed to the specified provider (may be null).
27 * if provider is null, which means the label is not managed by the SB. 27 * if provider is null, which means the label is not managed by the SB.
28 * 28 *
29 - * @param elementId parent network element 29 + * @param providerId tunnelProvider Id
30 + * @param elementId parent network element
30 * @param number port number 31 * @param number port number
31 * @param parentLabel parent port or parent label 32 * @param parentLabel parent port or parent label
32 * @param type port type 33 * @param type port type
......
...@@ -57,14 +57,16 @@ public interface TunnelService { ...@@ -57,14 +57,16 @@ public interface TunnelService {
57 /** 57 /**
58 * Returns a collection of all known tunnel based on the type. 58 * Returns a collection of all known tunnel based on the type.
59 * 59 *
60 + *@param type tunnelType
60 * @return all tunnels for a specific type 61 * @return all tunnels for a specific type
61 */ 62 */
62 Collection<Tunnel> getTunnels(Tunnel.Type type); 63 Collection<Tunnel> getTunnels(Tunnel.Type type);
63 64
64 /** 65 /**
65 - * Returns set of all tunnels from the 66 + * Returns set of all tunnels from the specified connectpoint.
66 - * specified connectpoint.
67 * 67 *
68 + * @param connectPoint device/portnumber
69 + * @param type tunnelType
68 * @return set of tunnels 70 * @return set of tunnels
69 */ 71 */
70 Collection<Tunnel> getTunnels(ConnectPoint connectPoint, Tunnel.Type type); 72 Collection<Tunnel> getTunnels(ConnectPoint connectPoint, Tunnel.Type type);
......