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