01: /* ===========================================================================
02: * $RCSfile: PlaceholderCl.java,v $
03: * ===========================================================================
04: *
05: * RetroGuard -- an obfuscation package for Java classfiles.
06: *
07: * Copyright (c) 1998-2006 Mark Welsh (markw@retrologic.com)
08: *
09: * This program can be redistributed and/or modified under the terms of the
10: * Version 2 of the GNU General Public License as published by the Free
11: * Software Foundation.
12: *
13: * This program 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
16: * GNU General Public License for more details.
17: *
18: */
19:
20: package COM.rl.obf;
21:
22: import java.io.*;
23: import java.lang.reflect.*;
24: import java.util.*;
25: import COM.rl.util.*;
26: import COM.rl.obf.classfile.*;
27:
28: /**
29: * Placeholder class -- used to represent a class which has inner classes, before the
30: * class itself has been encountered.
31: *
32: * @author Mark Welsh
33: */
34: public class PlaceholderCl extends Cl {
35: // Constants -------------------------------------------------------------
36:
37: // Fields ----------------------------------------------------------------
38:
39: // Class Methods ---------------------------------------------------------
40:
41: // Instance Methods ------------------------------------------------------
42: /** Ctor. */
43: public PlaceholderCl(TreeItem parent, boolean isInnerClass,
44: String name) throws Exception {
45: super (parent, isInnerClass, name, null, null, 0);
46: }
47: }
|