A race condition occurs between ARPHandler and HostTracker if the ARP
[controller.git] / opendaylight / sal / yang-prototype / yang / 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.Set;
11
12 import org.opendaylight.controller.yang.model.api.GroupingDefinition;
13
14 /**
15  * Interface for builders of 'grouping' statement.
16  */
17 public interface GroupingBuilder extends DataNodeContainerBuilder, SchemaNodeBuilder, GroupingMember {
18
19     /**
20      * Build GroupingDefinition object from this builder.
21      */
22     GroupingDefinition build();
23
24     /**
25      * Get uses statement defined in this builder
26      *
27      * @return collection of builders of uses statements
28      */
29     Set<UsesNodeBuilder> getUses();
30
31 }