MDSAL-301: Binding v2 - Rework javadoc generation
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / main / twirl / org / opendaylight / mdsal / binding / javav2 / generator / impl / yangTemplateWriteDeviation.scala.txt
diff --git a/binding2/mdsal-binding2-generator-impl/src/main/twirl/org/opendaylight/mdsal/binding/javav2/generator/impl/yangTemplateWriteDeviation.scala.txt b/binding2/mdsal-binding2-generator-impl/src/main/twirl/org/opendaylight/mdsal/binding/javav2/generator/impl/yangTemplateWriteDeviation.scala.txt
deleted file mode 100644 (file)
index 4b2b5f3..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-@*
- * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- *@
-
-@**********************************************************
-* Twirl YangTemplate for generating yang snippets.        *
-* Twirl is transformed to Scala and compiled. Then,       *
-* it can be called from Java with particular input        *
-* parameters to render desired output code.               *
-***********************************************************@
-
-@import org.opendaylight.yangtools.yang.model.api.Deviation
-@import org.opendaylight.yangtools.yang.model.api.Status
-@import org.opendaylight.yangtools.yang.model.api.stmt.DeviationEffectiveStatement
-
-@(deviation: Deviation)
-deviation @{deviation.asInstanceOf[DeviationEffectiveStatement].getDeclared().rawArgument()} {
-    @if(deviation.getReference().isPresent()) {
-        reference "@{deviation.getReference().get()}";
-    }
-    @if(deviation.getDescription().isPresent()) {
-        description "@{deviation.getDescription().get()}";
-    }
-    @for(deviate <- deviation.getDeviates()) {
-        @if(deviate != null && deviate.getDeviateType() != null ) {
-            @if(deviate.getDeviatedDefault() == null && !deviate.getDeviatedMandatory() && deviate.getDeviatedMaxElements()==null && deviate.getDeviatedMinElements() == null) {
-                deviate @{deviate.getDeviateType().name()};
-            } else {
-                deviate  @{deviate.getDeviateType().name().toLowerCase()} {
-                @if(deviate.getDeviatedDefault() != null) {
-                    default "@{deviate.getDeviatedDefault()}";
-                }
-                @if(deviate.getDeviatedMandatory() != null && deviate.getDeviatedMandatory()) {
-                    mandatory true;
-                }
-                @if(deviate.getDeviatedMinElements() != null) {
-                    min-elements @{deviate.getDeviatedMinElements()};
-                }
-                @if(deviate.getDeviatedMaxElements() != null) {
-                    max-elements @{deviate.getDeviatedMaxElements()};
-                }
-                }
-            }
-        }
-    }
-}