BUG-865: deprecate pre-Beryllium parser elements
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / parser / builder / impl / AbstractBuilderTest.java
index 9e6dca24df1506ba2a8f76e36ecdd5f19746ff53..684b068e7c40cb3505a61703679a7c68be75c3f3 100644 (file)
@@ -15,7 +15,10 @@ import org.opendaylight.yangtools.yang.parser.builder.api.UsesNodeBuilder;
 
 /**
  * Created by lukas on 10/14/14.
+ *
+ * @deprecated Pre-Beryllium implementation, scheduled for removal.
  */
+@Deprecated
 public abstract class AbstractBuilderTest {
 
     protected final static String MODULE_NAMESPACE = "urn:opendaylight.rpc:def:test-model";
@@ -61,7 +64,7 @@ public abstract class AbstractBuilderTest {
         return unknownNodeBuilder;
     }
 
-    protected ChoiceBuilder provideChoiceBuilder(String choiceLocalName) {
+    protected ChoiceBuilder provideChoiceBuilder(final String choiceLocalName) {
         final QName choiceName = QName.create(module.getNamespace(), module.getRevision(), choiceLocalName);
         final SchemaPath choicePath = SchemaPath.create(true, choiceName);
         final ChoiceBuilder choiceBuilder = new ChoiceBuilder(module.getModuleName(), 22, choiceName, choicePath);