Rename binding-parent to binding-bundle-parent
[yangtools.git] / binding / binding-model / src / main / java / org / opendaylight / yangtools / 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.yangtools.binding.model.api.type.builder;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.binding.model.api.GeneratedType;
12
13 /**
14  * Generated Type Builder interface is helper interface for building and
15  * defining the GeneratedType.
16  *
17  * @see GeneratedType
18  */
19 public interface GeneratedTypeBuilder extends GeneratedTypeBuilderBase<GeneratedTypeBuilder> {
20     /**
21      * Returns the <code>new</code> <i>immutable</i> instance of Generated Type.
22      *
23      * @return the <code>new</code> <i>immutable</i> instance of Generated Type.
24      */
25     @NonNull GeneratedType build();
26 }