Eliminate superfluous onFullDefinitionDeclared overrides
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / YinElementStatementImpl.java
index 54115176e58561bbe936c601d44a7dc2fc671987..6c32110d1cd31c827ff70159083ac75173edb2fc 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
@@ -7,51 +7,55 @@
  */
 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020;
 
-import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
+import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
 import org.opendaylight.yangtools.yang.model.api.stmt.YinElementStatement;
+import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
+import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.YinElementEffectiveStatementImpl;
 
 public class YinElementStatementImpl extends AbstractDeclaredStatement<Boolean>
         implements YinElementStatement {
+    private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(
+        YangStmtMapping.YIN_ELEMENT).build();
 
-    protected YinElementStatementImpl(
-            StmtContext<Boolean, YinElementStatement, ?> context) {
+    protected YinElementStatementImpl(final StmtContext<Boolean, YinElementStatement, ?> context) {
         super(context);
     }
 
-    public static class Definition
-            extends
+    public static class Definition extends
             AbstractStatementSupport<Boolean, YinElementStatement, EffectiveStatement<Boolean, YinElementStatement>> {
 
         public Definition() {
-            super(Rfc6020Mapping.YIN_ELEMENT);
+            super(YangStmtMapping.YIN_ELEMENT);
         }
 
         @Override
-        public Boolean parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) {
+        public Boolean parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
             return Boolean.valueOf(value);
         }
 
         @Override
-        public YinElementStatement createDeclared(
-                StmtContext<Boolean, YinElementStatement, ?> ctx) {
+        public YinElementStatement createDeclared(final StmtContext<Boolean, YinElementStatement, ?> ctx) {
             return new YinElementStatementImpl(ctx);
         }
 
         @Override
         public EffectiveStatement<Boolean, YinElementStatement> createEffective(
-                StmtContext<Boolean, YinElementStatement, EffectiveStatement<Boolean, YinElementStatement>> ctx) {
-            throw new UnsupportedOperationException();
+                final StmtContext<Boolean, YinElementStatement, EffectiveStatement<Boolean, YinElementStatement>> ctx) {
+            return new YinElementEffectiveStatementImpl(ctx);
         }
 
+        @Override
+        protected SubstatementValidator getSubstatementValidator() {
+            return SUBSTATEMENT_VALIDATOR;
+        }
     }
 
     @Override
-    public Boolean getValue() {
+    public boolean getValue() {
         return argument();
     }
-
 }