01: /*
02: * Copyright 2006 Ralf Joachim
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
05: * use this file except in compliance with the License. You may obtain a copy of
06: * the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13: * License for the specific language governing permissions and limitations under
14: * the License.
15: */
16: package org.exolab.javasource;
17:
18: /**
19: * A representation of the Java Source code for a Java inner class.
20: *
21: * @author <a href="mailto:ralf DOT joachim AT syscon DOT eu">Ralf Joachim</a>
22: * @version $Revision: 6668 $ $Date: 2005-05-08 12:32:06 -0600 (Sun, 08 May 2005) $
23: * @since 1.1
24: */
25: public class JInnerClass extends JClass {
26: //--------------------------------------------------------------------------
27:
28: /**
29: * Creates a new JInnerClass with the given name.
30: *
31: * @param name The name of the JClass to create
32: */
33: protected JInnerClass(final String name) {
34: super (name);
35: }
36:
37: //--------------------------------------------------------------------------
38: }
|