BitOhenry
Committed by Gerrit Code Review

ONOS-3200 unify code formation and fix grammar problem

Change-Id: I84c7da38790600946a9e3e97ddf9dfe01b4ab92b
...@@ -48,7 +48,7 @@ public final class OvsdbEvent<S> { ...@@ -48,7 +48,7 @@ public final class OvsdbEvent<S> {
48 } 48 }
49 49
50 /** 50 /**
51 - * Returns the type of the event. 51 + * Returns the type of event.
52 * 52 *
53 * @return event type 53 * @return event type
54 */ 54 */
...@@ -57,7 +57,7 @@ public final class OvsdbEvent<S> { ...@@ -57,7 +57,7 @@ public final class OvsdbEvent<S> {
57 } 57 }
58 58
59 /** 59 /**
60 - * Returns the subject of the event. 60 + * Returns the subject of event.
61 * 61 *
62 * @return subject to which this event pertains 62 * @return subject to which this event pertains
63 */ 63 */
......
...@@ -22,8 +22,8 @@ import java.util.Objects; ...@@ -22,8 +22,8 @@ import java.util.Objects;
22 import org.onlab.packet.IpAddress; 22 import org.onlab.packet.IpAddress;
23 23
24 /** 24 /**
25 - * The class representing a OpenStack Compute or Network nodeId. This class is 25 + * The class representing a OpenStack Compute or Network nodeId.
26 - * immutable. 26 + * This class is immutable.
27 */ 27 */
28 public final class OvsdbNodeId { 28 public final class OvsdbNodeId {
29 private static final String SCHEME = "ovsdb"; 29 private static final String SCHEME = "ovsdb";
...@@ -31,7 +31,7 @@ public final class OvsdbNodeId { ...@@ -31,7 +31,7 @@ public final class OvsdbNodeId {
31 private final String ipAddress; 31 private final String ipAddress;
32 32
33 /** 33 /**
34 - * Creates a new node identifier from a IpAddress ipAddress, a long port. 34 + * Creates a new node identifier from an IpAddress ipAddress, a long port.
35 * 35 *
36 * @param ipAddress node IP address 36 * @param ipAddress node IP address
37 * @param port node port 37 * @param port node port
......
...@@ -21,14 +21,15 @@ import static com.google.common.base.Preconditions.checkNotNull; ...@@ -21,14 +21,15 @@ import static com.google.common.base.Preconditions.checkNotNull;
21 import java.util.Objects; 21 import java.util.Objects;
22 22
23 /** 23 /**
24 - * The class representing a port type. This class is immutable. 24 + * The class representing a port type.
25 + * This class is immutable.
25 */ 26 */
26 public class OvsdbPortType { 27 public class OvsdbPortType {
27 28
28 private final String value; 29 private final String value;
29 30
30 /** 31 /**
31 - * Constructor from a String port type. 32 + * Constructor from a String.
32 * 33 *
33 * @param value the port type to use 34 * @param value the port type to use
34 */ 35 */
...@@ -38,9 +39,9 @@ public class OvsdbPortType { ...@@ -38,9 +39,9 @@ public class OvsdbPortType {
38 } 39 }
39 40
40 /** 41 /**
41 - * Gets the value of the port type. 42 + * Gets the value of port type.
42 * 43 *
43 - * @return the value of the port type 44 + * @return the value of port type
44 */ 45 */
45 public String value() { 46 public String value() {
46 return value; 47 return value;
......