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 / TypeAwareBuilder.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 org.opendaylight.controller.yang.common.QName;
11 import org.opendaylight.controller.yang.model.api.SchemaPath;
12 import org.opendaylight.controller.yang.model.api.TypeDefinition;
13
14 /**
15  * Builders of all nodes, which can have 'type' statement must implement this interface.
16  * [typedef, type, leaf, leaf-list, deviate]
17  */
18 public interface TypeAwareBuilder extends Builder {
19
20     QName getQName();
21
22     SchemaPath getPath();
23
24     TypeDefinition<?> getType();
25
26     TypeDefinitionBuilder getTypedef();
27
28     void setType(TypeDefinition<?> type);
29
30     void setTypedef(TypeDefinitionBuilder typedef);
31
32 }