MDSAL-301: Binding v2 - Rework javadoc generation
[mdsal.git] / binding2 / mdsal-binding2-generator-api / src / main / java / org / opendaylight / mdsal / binding / javav2 / model / api / GeneratedTypeForBuilder.java
1 /*
2  * Copyright (c) 2017 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.mdsal.binding.javav2.model.api;
9
10 import com.google.common.annotations.Beta;
11
12 /**
13  * Java interface for builders to get package name and so on.
14  */
15 @Beta
16 public interface GeneratedTypeForBuilder {
17     /**
18      * Returns name of the package that builder class belongs to.
19      *
20      * @return name of the package that  builder class belongs to
21      */
22     String getPackageNameForBuilder();
23
24     /**
25      * Returns base package name that builder class belongs to.
26      *
27      * @return base package name that  builder class belongs to
28      */
29     String getBasePackageName();
30
31
32 }