KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejen > EjenContext


1 //
2
// Ejen (code generation system)
3
// Copyright (C) 2001, 2002 François Wolff (ejen@noos.fr).
4
//
5
// This file is part of Ejen.
6
//
7
// Ejen is free software; you can redistribute it and/or modify
8
// it under the terms of the GNU General Public License as published by
9
// the Free Software Foundation; either version 2 of the License, or
10
// (at your option) any later version.
11
//
12
// Ejen 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
15
// GNU General Public License for more details.
16
//
17
// You should have received a copy of the GNU General Public License
18
// along with Ejen; if not, write to the Free Software
19
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
//
21
package org.ejen;
22
23 import java.util.Hashtable JavaDoc;
24
25 /**
26  * Ejen context class (just an Hashtable).
27  * @author F. Wolff
28  * @version 1.0
29  */

30 public class EjenContext extends Hashtable JavaDoc {
31
32     /** Constructor (empty). */
33     public EjenContext() {
34         super();
35     }
36
37     /**
38      * Constructs a new EjenContext with the same mappings as the given EjenContext.
39      * @param ejenContext the EjenContext whose mappings are to be placed in this
40      * EjenContext.
41      */

42     public EjenContext(EjenContext ejenContext) {
43         super(ejenContext);
44     }
45 }
46
Popular Tags