ConstGen.java revision 608:7e06bf1dcb09
1353358Sdim/*
2317019Sdim * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
3353358Sdim * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4353358Sdim *
5353358Sdim * This code is free software; you can redistribute it and/or modify it
6317019Sdim * under the terms of the GNU General Public License version 2 only, as
7317019Sdim * published by the Free Software Foundation.  Oracle designates this
8317019Sdim * particular file as subject to the "Classpath" exception as provided
9317019Sdim * by Oracle in the LICENSE file that accompanied this code.
10317019Sdim *
11317019Sdim * This code is distributed in the hope that it will be useful, but WITHOUT
12317019Sdim * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13317019Sdim * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14317019Sdim * version 2 for more details (a copy is included in the LICENSE file that
15317019Sdim * accompanied this code).
16317019Sdim *
17317019Sdim * You should have received a copy of the GNU General Public License version
18317019Sdim * 2 along with this work; if not, write to the Free Software Foundation,
19317019Sdim * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20317019Sdim *
21317019Sdim * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22344779Sdim * or visit www.oracle.com if you need additional information or have any
23317019Sdim * questions.
24317019Sdim */
25317019Sdim/*
26317019Sdim * COMPONENT_NAME: idl.parser
27317019Sdim *
28317019Sdim * ORIGINS: 27
29317019Sdim *
30317019Sdim * Licensed Materials - Property of IBM
31317019Sdim * 5639-D57 (C) COPYRIGHT International Business Machines Corp. 1997, 1999
32317019Sdim * RMI-IIOP v1.0
33317019Sdim *
34317019Sdim */
35317019Sdim
36317019Sdimpackage com.sun.tools.corba.se.idl;
37317019Sdim
38317019Sdim// NOTES:
39327952Sdim
40317019Sdimimport java.io.PrintWriter;
41317019Sdimimport java.util.Hashtable;
42317019Sdim
43317019Sdimpublic interface ConstGen extends Generator
44317019Sdim{
45317019Sdim  void generate (Hashtable symbolTable, ConstEntry entry, PrintWriter stream);
46317019Sdim} // interface ConstGen
47317019Sdim