Bug 4662: Introduce a SemanticVersion concept - pre-linkage phase
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / AbstractStatementSupport.java
index eb75d0c71f04cba7098659f84ef13735eaef748a..ffc1249a75c77b3ea4cfff4066bf407c69ee5216 100644 (file)
@@ -71,6 +71,20 @@ public abstract class AbstractStatementSupport<A, D extends DeclaredStatement<A>
         // NOOP for most implementations
     }
 
+    /**
+     *
+     * {@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)}.
+     *
+     */
+    @Override
+    public void onPreLinkageDeclared(StmtContext.Mutable<A, D, E> stmt) {
+        // NOOP for most implementations
+    }
+
     /**
      *
      * {@inheritDoc}