Fix leafref require-instance implementation
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / ConstraintMetaDefinition.java
index ea2f7d3e68c601cdd1b2e37073b7737a4b13f3a0..7b5f3e43c46ed4606a22f993027c89fef25b63bd 100644 (file)
@@ -8,16 +8,16 @@
 package org.opendaylight.yangtools.yang.model.api;
 
 /**
- * Contains methods which retrive values for description, error message, error
+ * Contains methods which retrieve values for description, error message, error
  * app tag and reference (to other document).
- * 
+ *
  */
 public interface ConstraintMetaDefinition {
 
     /**
      * Returns the value of the argument of YANG <code>description</code>
      * keyword.
-     * 
+     *
      * @return string with the description
      */
     String getDescription();
@@ -25,7 +25,7 @@ public interface ConstraintMetaDefinition {
     /**
      * Returns the value of the argument of YANG <code>error-app-tag</code>
      * keyword.
-     * 
+     *
      * @return string with the application tag
      */
     String getErrorAppTag();
@@ -33,14 +33,14 @@ public interface ConstraintMetaDefinition {
     /**
      * Returns the value of the argument of YANG <code>error-message</code>
      * keyword.
-     * 
+     *
      * @return string with the error message
      */
     String getErrorMessage();
 
     /**
      * Returns the value of the argument of YANG <code>reference</code> keyword.
-     * 
+     *
      * @return string with reference to some other document
      */
     String getReference();