Fix checkstyle in yang-parser-spi
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / AbstractStatementSupport.java
index 161c33987079c7383b0d28f23964c74551d1f854..fb2d0e32824e2b1c93a55c7db761f41ed525206d 100644 (file)
@@ -17,10 +17,8 @@ import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
 
 /**
- * Class providing necessary support for processing a YANG statement.
- *
- * This class is intended to be subclassed by developers, who want to
- * introduce support of statement to parser.
+ * Class providing necessary support for processing a YANG statement. This class is intended to be subclassed
+ * by developers who want to add semantic support for a statement to a parser reactor.
  *
  * @param <A>
  *            Argument type
@@ -79,11 +77,11 @@ public abstract class AbstractStatementSupport<A, D extends DeclaredStatement<A>
     }
 
     /**
-     * {@inheritDoc}
+     * {@inheritDoc}.
      *
-     * Subclasses of this class may override this method to perform actions on
-     * this event or register modification action using
-     * {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)}.
+     * <p>
+     * Subclasses of this class may override this method to perform actions on this event or register a modification
+     * action using {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)}.
      */
     @Override
     public void onPreLinkageDeclared(final StmtContext.Mutable<A, D, E> stmt) {
@@ -91,11 +89,11 @@ public abstract class AbstractStatementSupport<A, D extends DeclaredStatement<A>
     }
 
     /**
-     * {@inheritDoc}
+     * {@inheritDoc}.
      *
-     * Subclasses of this class may override this method to perform actions on
-     * this event or register modification action using
-     * {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)}.
+     * <p>
+     * Subclasses of this class may override this method to perform actions on this event or register a modification
+     * action using {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)}.
      */
     @Override
     public void onLinkageDeclared(final StmtContext.Mutable<A, D, E> stmt) {
@@ -103,11 +101,11 @@ public abstract class AbstractStatementSupport<A, D extends DeclaredStatement<A>
     }
 
     /**
-     * {@inheritDoc}
+     * {@inheritDoc}.
      *
-     * Subclasses of this class may override this method to perform actions on
-     * this event or register modification action using
-     * {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)}.
+     * <p>
+     * Subclasses of this class may override this method to perform actions on this event or register a modification
+     * action using {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)}.
      */
     @Override
     public void onStatementDefinitionDeclared(final StmtContext.Mutable<A, D, E> stmt) {
@@ -115,11 +113,11 @@ public abstract class AbstractStatementSupport<A, D extends DeclaredStatement<A>
     }
 
     /**
-     * {@inheritDoc}
+     * {@inheritDoc}.
      *
-     * Subclasses of this class may override this method to perform actions on
-     * this event or register modification action using
-     * {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)}.
+     * <p>
+     * Subclasses of this class may override this method to perform actions on this event or register a modification
+     * action using {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)}.
      */
     @Override
     public void onFullDefinitionDeclared(final StmtContext.Mutable<A, D, E> stmt) {
@@ -149,7 +147,7 @@ public abstract class AbstractStatementSupport<A, D extends DeclaredStatement<A>
     }
 
     /**
-     * Returns corresponding substatement validator of a statement support
+     * Returns corresponding substatement validator of a statement support.
      *
      * @return substatement validator or null, if substatement validator is not
      *         defined