Fix checkstyle in yang-parser-spi
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / validation / ValidationBundlesNamespace.java
index 8deb87e30b1608d096c1805ab6cce076b3fc39cd..e2f5b0fcf373aedb38832ebd5bb5584900a14eea 100644 (file)
@@ -12,36 +12,36 @@ import java.util.Collection;
 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
 
 /**
- * namespace used for validating whether a node is of some type, e.g. usable target for some operation or has other
- * significant properties
+ * Namespace used for validating whether a node is of some type, e.g. usable target for some operation or has other
+ * significant properties.
  */
 public interface ValidationBundlesNamespace extends
         IdentifierNamespace<ValidationBundlesNamespace.ValidationBundleType, Collection<?>> {
 
-    public enum ValidationBundleType {
+    enum ValidationBundleType {
         /**
-         * whether a node is suitable refine substatement
+         * Whether a node is suitable refine substatement.
          */
         SUPPORTED_REFINE_SUBSTATEMENTS,
 
         /**
-         * whether a node is suitable target for refine operation
+         * Whether a node is suitable target for refine operation.
          */
         SUPPORTED_REFINE_TARGETS,
 
         /**
-         * whether a node is suitable target for augment operation
+         * Whether a node is suitable target for augment operation.
          */
         SUPPORTED_AUGMENT_TARGETS,
 
         /**
-         * whether a <a href="https://tools.ietf.org/html/rfc6020#section-7.9.2">case shorthand</a> can be created for a
-         * node
+         * Whether a <a href="https://tools.ietf.org/html/rfc6020#section-7.9.2">case shorthand</a> can be created for a
+         * node.
          */
         SUPPORTED_CASE_SHORTHANDS,
 
         /**
-         * whether a node is data node
+         * Whether a node is data node.
          */
         SUPPORTED_DATA_NODES
     }