Refactored ModuleBuilder to avoid name conflicts. Fixed implementation of ChoiceBuilder.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / main / java / org / opendaylight / controller / yang / parser / builder / api / ChildNodeBuilder.java
diff --git a/opendaylight/sal/yang-prototype/code-generator/yang-model-parser-impl/src/main/java/org/opendaylight/controller/yang/parser/builder/api/ChildNodeBuilder.java b/opendaylight/sal/yang-prototype/code-generator/yang-model-parser-impl/src/main/java/org/opendaylight/controller/yang/parser/builder/api/ChildNodeBuilder.java
deleted file mode 100644 (file)
index 1811851..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (c) 2013 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
- */
-package org.opendaylight.controller.yang.parser.builder.api;
-
-import java.util.Set;
-
-import org.opendaylight.controller.yang.common.QName;
-import org.opendaylight.controller.yang.model.api.SchemaPath;
-
-/**
- * Interface for all yang data-node containers [augment, case, container,
- * grouping, list, module, notification].
- */
-public interface ChildNodeBuilder extends Builder {
-
-    QName getQName();
-
-    void addChildNode(DataSchemaNodeBuilder childNode);
-
-    void addGrouping(GroupingBuilder groupingBuilder);
-
-    void addUsesNode(UsesNodeBuilder usesBuilder);
-
-    void addTypedef(TypeDefinitionBuilder typedefBuilder);
-
-    Set<DataSchemaNodeBuilder> getChildNodes();
-
-    SchemaPath getPath();
-
-}