Committed by
Gerrit Code Review
ONOS-3200 unify code formation and fix grammar problem
Change-Id: Iabdfb0d01c16307c46bc8b530fb74ff7b2dee633
Showing
1 changed file
with
11 additions
and
10 deletions
| ... | @@ -23,7 +23,8 @@ import java.util.Objects; | ... | @@ -23,7 +23,8 @@ import java.util.Objects; |
| 23 | import org.onlab.packet.IpAddress; | 23 | import org.onlab.packet.IpAddress; |
| 24 | 24 | ||
| 25 | /** | 25 | /** |
| 26 | - * The class representing a ovsdb tunnel. This class is immutable. | 26 | + * The class representing an ovsdb tunnel. |
| 27 | + * This class is immutable. | ||
| 27 | */ | 28 | */ |
| 28 | public final class OvsdbTunnel { | 29 | public final class OvsdbTunnel { |
| 29 | 30 | ||
| ... | @@ -38,7 +39,7 @@ public final class OvsdbTunnel { | ... | @@ -38,7 +39,7 @@ public final class OvsdbTunnel { |
| 38 | private final OvsdbTunnelName tunnelName; | 39 | private final OvsdbTunnelName tunnelName; |
| 39 | 40 | ||
| 40 | /** | 41 | /** |
| 41 | - * Constructor from a IpAddress localIp, IpAddress remoteIp Type tunnelType, | 42 | + * Constructor from an IpAddress localIp, IpAddress remoteIp Type tunnelType, |
| 42 | * OvsdbTunnelName tunnelName. | 43 | * OvsdbTunnelName tunnelName. |
| 43 | * | 44 | * |
| 44 | * @param localIp the localIp to use | 45 | * @param localIp the localIp to use |
| ... | @@ -58,36 +59,36 @@ public final class OvsdbTunnel { | ... | @@ -58,36 +59,36 @@ public final class OvsdbTunnel { |
| 58 | } | 59 | } |
| 59 | 60 | ||
| 60 | /** | 61 | /** |
| 61 | - * Gets the local IP of the tunnel. | 62 | + * Gets the local IP of tunnel. |
| 62 | * | 63 | * |
| 63 | - * @return the local IP of the tunnel | 64 | + * @return the local IP of tunnel |
| 64 | */ | 65 | */ |
| 65 | public IpAddress localIp() { | 66 | public IpAddress localIp() { |
| 66 | return localIp; | 67 | return localIp; |
| 67 | } | 68 | } |
| 68 | 69 | ||
| 69 | /** | 70 | /** |
| 70 | - * Gets the remote IP of the tunnel. | 71 | + * Gets the remote IP of tunnel. |
| 71 | * | 72 | * |
| 72 | - * @return the remote IP of the tunnel | 73 | + * @return the remote IP of tunnel |
| 73 | */ | 74 | */ |
| 74 | public IpAddress remoteIp() { | 75 | public IpAddress remoteIp() { |
| 75 | return remoteIp; | 76 | return remoteIp; |
| 76 | } | 77 | } |
| 77 | 78 | ||
| 78 | /** | 79 | /** |
| 79 | - * Gets the tunnel type of the tunnel. | 80 | + * Gets the tunnel type of tunnel. |
| 80 | * | 81 | * |
| 81 | - * @return the tunnel type of the tunnel | 82 | + * @return the tunnel type of tunnel |
| 82 | */ | 83 | */ |
| 83 | public Type tunnelType() { | 84 | public Type tunnelType() { |
| 84 | return tunnelType; | 85 | return tunnelType; |
| 85 | } | 86 | } |
| 86 | 87 | ||
| 87 | /** | 88 | /** |
| 88 | - * Gets the tunnel name of the tunnel. | 89 | + * Gets the tunnel name of tunnel. |
| 89 | * | 90 | * |
| 90 | - * @return the tunnel name of the tunnel | 91 | + * @return the tunnel name of tunnel |
| 91 | */ | 92 | */ |
| 92 | public OvsdbTunnelName tunnelName() { | 93 | public OvsdbTunnelName tunnelName() { |
| 93 | return tunnelName; | 94 | return tunnelName; | ... | ... |
-
Please register or login to post a comment