Increased version of binding-generator to 0.5.5-SNAPSHOT.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-parser-impl / src / main / java / org / opendaylight / controller / yang / parser / builder / api / UsesNodeBuilder.java
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-parser-impl/src/main/java/org/opendaylight/controller/yang/parser/builder/api/UsesNodeBuilder.java b/opendaylight/sal/yang-prototype/yang/yang-model-parser-impl/src/main/java/org/opendaylight/controller/yang/parser/builder/api/UsesNodeBuilder.java
deleted file mode 100644 (file)
index 626f0f4..0000000
+++ /dev/null
@@ -1,48 +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.List;
-import java.util.Set;
-
-import org.opendaylight.controller.yang.model.api.SchemaPath;
-import org.opendaylight.controller.yang.model.api.UsesNode;
-import org.opendaylight.controller.yang.parser.util.RefineHolder;
-
-/**
- * Interface for builders of 'uses' statement.
- */
-public interface UsesNodeBuilder extends GroupingMember, Builder {
-
-    DataNodeContainerBuilder getParent();
-
-    String getGroupingName();
-
-    SchemaPath getGroupingPath();
-
-    void setGroupingPath(SchemaPath groupingPath);
-
-    Set<AugmentationSchemaBuilder> getAugmentations();
-
-    void addAugment(AugmentationSchemaBuilder builder);
-
-    boolean isAugmenting();
-
-    void setAugmenting(boolean augmenting);
-
-    List<RefineHolder> getRefines();
-
-    List<SchemaNodeBuilder> getRefineNodes();
-
-    void addRefine(RefineHolder refine);
-
-    void addRefineNode(SchemaNodeBuilder refineNode);
-
-    UsesNode build();
-
-}