e4088a84a699e7de66d0d5385bfdbe84bb60c6bb
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / main / java / org / opendaylight / controller / yang / parser / builder / api / GroupingBuilder.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.yang.parser.builder.api;
9
10 import java.util.List;
11 import java.util.Set;
12
13 import org.opendaylight.controller.yang.model.api.GroupingDefinition;
14 import org.opendaylight.controller.yang.model.api.Status;
15 import org.opendaylight.controller.yang.parser.builder.impl.UnknownSchemaNodeBuilder;
16
17 /**
18  * Interface for builders of 'grouping' statement.
19  */
20 public interface GroupingBuilder extends DataNodeContainerBuilder, SchemaNodeBuilder,
21         TypeDefinitionAwareBuilder {
22
23     String getDescription();
24
25     String getReference();
26
27     Status getStatus();
28
29     GroupingDefinition build();
30
31     DataSchemaNodeBuilder getChildNode(String name);
32
33     List<UnknownSchemaNodeBuilder> getUnknownNodes();
34
35     Set<GroupingBuilder> getGroupings();
36
37     Set<UsesNodeBuilder> getUses();
38
39 }