BitOhenry
Committed by Gerrit Code Review

ONOS-3200 unify code formation and fix grammar problem

Change-Id: Ieacdfc042e1055713f4502416542055cee8fa97b
...@@ -21,7 +21,7 @@ import org.onlab.packet.IpAddress; ...@@ -21,7 +21,7 @@ import org.onlab.packet.IpAddress;
21 import org.onlab.packet.MacAddress; 21 import org.onlab.packet.MacAddress;
22 22
23 /** 23 /**
24 - * Represents for a entity that carry important information for listener. 24 + * Represents for an entity that carry important information for listener.
25 */ 25 */
26 public interface OvsdbEventSubject extends EventSubject { 26 public interface OvsdbEventSubject extends EventSubject {
27 /** 27 /**
......
...@@ -20,13 +20,14 @@ import static com.google.common.base.Preconditions.checkNotNull; ...@@ -20,13 +20,14 @@ import static com.google.common.base.Preconditions.checkNotNull;
20 import java.util.Objects; 20 import java.util.Objects;
21 21
22 /** 22 /**
23 - * The class representing a ifaceid. This class is immutable. 23 + * The class representing an ifaceid.
24 + * This class is immutable.
24 */ 25 */
25 public class OvsdbIfaceId { 26 public class OvsdbIfaceId {
26 private final String value; 27 private final String value;
27 28
28 /** 29 /**
29 - * Constructor from a String ifaceid. 30 + * Constructor from a String.
30 * 31 *
31 * @param value the ifaceid to use 32 * @param value the ifaceid to use
32 */ 33 */
...@@ -36,9 +37,9 @@ public class OvsdbIfaceId { ...@@ -36,9 +37,9 @@ public class OvsdbIfaceId {
36 } 37 }
37 38
38 /** 39 /**
39 - * Gets the value of the ifaceid. 40 + * Gets the value of ifaceid.
40 * 41 *
41 - * @return the value of the ifaceid 42 + * @return the value of ifaceid
42 */ 43 */
43 public String value() { 44 public String value() {
44 return value; 45 return value;
......