Initial Commit
[packages] / xemacs-packages / jde / java / src / jde / wizards / ClassRegistry.java
1 /*
2  * Copyright (c) Eric D. Friedman 1998. All Rights Reserved.
3  * Copyright (c) Paul Kinnucan 1998. All Rights Reserved.
4  *
5  * $Revision: 1.2 $ 
6  * $Date: 1998/11/01 03:49:32 $ 
7  *
8  * InterfaceFactory is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2, or (at
11  * your option) any later version.
12  *
13  * InterfaceFactory 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  * General Public License for more details.
17  *
18  * To obtain a copy of the GNU General Public License write to the
19  * Free Software Foundation, Inc.,  59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.  
21  */
22
23 package jde.wizards;
24
25 /**
26  * Defines interface for class registries.
27  *
28  * @author Eric D. Friedman
29  * @version $Revision: 1.2 $
30  */
31
32 public interface ClassRegistry  
33 {
34   /** Register the specified class with this registry */
35   public void registerImport (Class to_import);
36
37   /** Get the NameFactory service for generating parameter names */
38   public NameFactory getNameFactory();
39
40 } // ClassRegistry
41
42
43 // End of ClassRegistry.java