Merge "Prevent stub and integrationtest plugins to go into the distribution of openda...
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-model-api / src / main / java / org / opendaylight / controller / sal / binding / model / api / type / builder / GeneratedTypeBuilder.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.sal.binding.model.api.type.builder;
9
10 import org.opendaylight.controller.sal.binding.model.api.GeneratedType;
11 import org.opendaylight.controller.sal.binding.model.api.Type;
12
13 /**
14
15  *
16  */
17 public interface GeneratedTypeBuilder extends Type {
18
19     public Type getParentType();
20
21     public void addComment(final String comment);
22     
23     public AnnotationTypeBuilder addAnnotation(final String packageName, final String name);
24     
25     public boolean addImplementsType(final GeneratedType genType);
26     
27     public ConstantBuilder addConstant(final Type type, final String name,
28             final Object value);
29
30     public EnumBuilder addEnumeration(final String name);
31
32     public MethodSignatureBuilder addMethod(final String name);
33
34     public GeneratedType toInstance();
35 }