KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > corba > generator > metainformation > api > IDL_JavaMIGenerator


1 /*====================================================================
2
3 created on 2 juil. 2003
4 OpenCCM: The Open CORBA Component Model Platform
5 Copyright (C) 2000-2004 INRIA & USTL - LIFL - GOAL
6 Contact: openccm@objectweb.org
7
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or any later version.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with this library; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 USA
22
23 Initial developer(s): Hameau Fabien.
24 Contributor(s): ______________________________________.
25
26 */

27
28 package org.objectweb.corba.generator.metainformation.api;
29
30 import org.objectweb.openccm.ast.api.Scope;
31 import org.objectweb.openccm.generator.common.api.GeneratorBase;
32
33
34 /**
35  * @author hameau
36  *
37  * This interface is related to the java type
38  * Metainformation implementations that should
39  * be generated from the IDL3 declaration.
40  */

41
42
43 public interface IDL_JavaMIGenerator
44 extends GeneratorBase
45 {
46   void idl_to_java(String JavaDoc outputDir, Scope scope)
47   throws org.objectweb.openccm.generator.common.lib.GenerationException;
48 }
49
Popular Tags