blob: 4ddde179df3a30215923697b8fb35d07749f6b9c [file] [log] [blame]
Gaurav Agrawal26390042016-04-12 13:30:16 +05301/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053017package org.onosproject.yangutils.translator.tojava;
Gaurav Agrawal26390042016-04-12 13:30:16 +053018
Bharat saraswale3175d32016-08-31 17:50:11 +053019import org.onosproject.yangutils.datamodel.LocationInfo;
20
Gaurav Agrawal26390042016-04-12 13:30:16 +053021/**
22 * Represents YANG java info containing interface for java code generator, java
23 * file information, java import data and temp java code fragment files. This
24 * interface serves as a generic interface and help to unify the generate code
25 * entry function.
26 */
Vinod Kumar S79a374b2016-04-30 21:09:15 +053027public interface JavaCodeGeneratorInfo
Bharat saraswale3175d32016-08-31 17:50:11 +053028 extends JavaFileInfoContainer, TempJavaCodeFragmentFilesContainer, LocationInfo {
Gaurav Agrawal26390042016-04-12 13:30:16 +053029}