Coding gudilines for class and methods javadocs fixed.

Change-Id: I0153e6391c9ec9eacaac65c3989834b6bf5c65bf
diff --git a/utils/yangutils/src/main/java/org/onosproject/yangutils/datamodel/YangRangeInterval.java b/utils/yangutils/src/main/java/org/onosproject/yangutils/datamodel/YangRangeInterval.java
index d3061a7..442cda0 100644
--- a/utils/yangutils/src/main/java/org/onosproject/yangutils/datamodel/YangRangeInterval.java
+++ b/utils/yangutils/src/main/java/org/onosproject/yangutils/datamodel/YangRangeInterval.java
@@ -14,7 +14,7 @@
 package org.onosproject.yangutils.datamodel;
 
 /**
- * Single interval information of a range.
+ * Represents single interval information of a range.
  *
  * @param <T> range type based on the data type.
  */
@@ -31,13 +31,13 @@
     private T endValue;
 
     /**
-     * Default constructor.
+     * Creates YANG range interval object.
      */
     public YangRangeInterval() {
     }
 
     /**
-     * Get the starting value of the range interval.
+     * Returns the starting value of the range interval.
      *
      * @return the starting value of the range interval.
      */
@@ -46,7 +46,7 @@
     }
 
     /**
-     * Set the starting value of the range interval.
+     * Sets the starting value of the range interval.
      *
      * @param startValue the starting value of the range interval.
      */
@@ -55,7 +55,7 @@
     }
 
     /**
-     * Get the last value of the range interval.
+     * Returns the last value of the range interval.
      *
      * @return last value of the range interval.
      */
@@ -64,7 +64,7 @@
     }
 
     /**
-     * Set the last value of the range interval.
+     * Sets the last value of the range interval.
      *
      * @param endValue last value of the range interval.
      */