Next round of yang-parser-impl checkstyle fixes
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / ContactStatementImpl.java
index baabab3f5441e5c170fc65a79cf12c9a25e5993e..83c037ee6bac19624e826768ad8d301ae91ec480 100644 (file)
@@ -11,56 +11,52 @@ import javax.annotation.Nonnull;
 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.ContactStatement;
-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.spi.meta.SubstatementValidator;
 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.ContactEffectiveStatementImpl;
 
-public class ContactStatementImpl extends AbstractDeclaredStatement<String> implements ContactStatement{
+public class ContactStatementImpl extends AbstractDeclaredStatement<String> implements ContactStatement {
     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(YangStmtMapping
             .CONTACT)
             .build();
 
-    protected ContactStatementImpl(StmtContext<String, ContactStatement,?> context) {
+    protected ContactStatementImpl(final StmtContext<String, ContactStatement,?> context) {
         super(context);
     }
 
-    public static class Definition extends AbstractStatementSupport<String,ContactStatement,EffectiveStatement<String,ContactStatement>> {
+    public static class Definition extends
+        AbstractStatementSupport<String, ContactStatement,EffectiveStatement<String, ContactStatement>> {
 
         public Definition() {
             super(YangStmtMapping.CONTACT);
         }
 
         @Override
-        public String parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) {
+        public String parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
             return value;
         }
 
         @Override
-        public ContactStatement createDeclared(StmtContext<String, ContactStatement, ?> ctx) {
+        public ContactStatement createDeclared(final StmtContext<String, ContactStatement, ?> ctx) {
             return new ContactStatementImpl(ctx);
         }
 
         @Override
-        public EffectiveStatement<String, ContactStatement> createEffective(StmtContext<String, ContactStatement, EffectiveStatement<String, ContactStatement>> ctx) {
+        public EffectiveStatement<String, ContactStatement> createEffective(
+                final StmtContext<String, ContactStatement, EffectiveStatement<String, ContactStatement>> ctx) {
             return new ContactEffectiveStatementImpl(ctx);
         }
 
-        @Override
-        public void onFullDefinitionDeclared(StmtContext.Mutable<String, ContactStatement,
-                EffectiveStatement<String, ContactStatement>> stmt) {
-            super.onFullDefinitionDeclared(stmt);
-            getSubstatementValidator().validate(stmt);
-        }
-
         @Override
         protected SubstatementValidator getSubstatementValidator() {
             return SUBSTATEMENT_VALIDATOR;
         }
     }
 
-    @Nonnull @Override
+    @Nonnull
+    @Override
     public String getText() {
         return rawArgument();
     }