Initial Commit
[packages] / xemacs-packages / jde / java / src / jde / wizards / SignatureVisitor.java
1 /*
2  * Copyright (c) Paul Kinnucan 2003. All Rights Reserved.
3  *
4  * $Revision: 1.2 $ 
5  * $Date: 2003/09/08 03:43:27 $ 
6  *
7  * SignatureHandler is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2, or (at
10  * your option) any later version.
11  *
12  * SignatureHandler 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  * General Public License for more details.
16  *
17  * To obtain a copy of the GNU General Public License write to the
18  * Free Software Foundation, Inc.,  59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.  
20  */
21 package jde.wizards;
22
23 interface SignatureVisitor {
24
25   void visit(Signature sig, boolean firstOfClass);
26   
27 }
28
29 /*
30  * $Log: SignatureVisitor.java,v $
31  * Revision 1.2  2003/09/08 03:43:27  paulk
32  * Remove DOS line endings.
33  *
34  * Revision 1.1  2003/09/07 05:32:01  paulk
35  * Initial revision.
36  *
37  */
38
39 // End of SignatureVisitor.java