KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > openccm > task > CIDLtoCIDL


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

26
27 package org.objectweb.openccm.task;
28
29 // Package dependencies
30
import java.util.Map JavaDoc;
31
32 /**
33  * This task feeds a CIDL file in the OpenCCM Interface Repository
34  * and generates only CIDL declarations.
35  *
36  * @author <a HREF="mailto:Christophe.Demarey@lifl.fr">Christophe Demarey</a>
37  *
38  * @version 0.1
39  */

40 public class CIDLtoCIDL
41      extends CompilerBase
42   implements Runnable JavaDoc
43 {
44     // ==================================================================
45
//
46
// Internal states.
47
//
48
// ==================================================================
49

50     /** The output file name. */
51     private String JavaDoc dest_file_;
52
53     // ==================================================================
54
//
55
// Constructors.
56
//
57
// ==================================================================
58

59     /**
60      * The default constructor.
61      *
62      * @param project_properties - Properties of the Ant Project.
63      */

64     public CIDLtoCIDL(Map JavaDoc project_properties)
65     {
66         // Call CompilerBase constructor
67
super(project_properties);
68         
69         // Init internal state
70
dest_file_ = "generated.cidl";
71     }
72     
73     // ==================================================================
74
//
75
// Internal methods.
76
//
77
// ==================================================================
78

79     // ==================================================================
80
//
81
// Public methods.
82
//
83
// ==================================================================
84

85     /**
86      * Configure the task.
87      */

88     public void
89     configure()
90     {
91         // Call the CompilerBase configure method
92
super.configure();
93         
94         setXmlFile( project_properties_.getProperty("OpenCCM_HOMEDIR") + "/xml/launcher/CIDLtoCIDL.xml" );
95
96         // Add destination file
97
addArgument("-o");
98         addArgument(dest_file_);
99     }
100
101     /**
102      * Set Java mapping output directory.
103      *
104      * @param outputdir - The output directory name.
105      */

106     public void
107     setDestfile(String JavaDoc filename)
108     {
109         dest_file_ = filename;
110     }
111    
112 }
113
Popular Tags