YANGTOOLS-706: Retrofit EffectiveStatement interfaces into parser
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / LengthEffectiveStatementImpl.java
index 31ac63caafd0db6aeb883e4a8c6436e15d6d3b98..68f666c3e4f7f3c41bc010f147fa898cde76a366 100644 (file)
@@ -8,12 +8,14 @@
 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type;
 
 import java.util.List;
+import org.opendaylight.yangtools.yang.model.api.stmt.LengthEffectiveStatement;
 import org.opendaylight.yangtools.yang.model.api.stmt.LengthStatement;
 import org.opendaylight.yangtools.yang.model.api.stmt.ValueRange;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class LengthEffectiveStatementImpl extends
-        AbstractListConstraintEffectiveStatement<ValueRange, LengthStatement> {
+public class LengthEffectiveStatementImpl
+        extends AbstractListConstraintEffectiveStatement<ValueRange, LengthStatement>
+        implements LengthEffectiveStatement {
     public LengthEffectiveStatementImpl(final StmtContext<List<ValueRange>, LengthStatement, ?> ctx) {
         super(ctx);
     }