1 /*2 * Project: BeautyJ - Customizable Java Source Code Transformer3 * Class: de.gulden.util.javasource.Constructor4 * Version: 1.05 *6 * Date: 2002-10-277 *8 * Note: Contains auto-generated Javadoc comments created by BeautyJ.9 * 10 * This is licensed under the GNU General Public License (GPL)11 * and comes with NO WARRANTY. See file license.txt for details.12 *13 * Author: Jens Gulden14 * Email: beautyj@jensgulden.de15 */16 17 package de.gulden.util.javasource;18 19 import de.gulden.util.javasource.jjt.Node;20 import de.gulden.util.javasource.jjt.*;21 import javax.xml.parsers.*;22 import org.w3c.dom.*;23 import java.util.*;24 25 /**26 * Represents a constructor declaration.27 * 28 * @author Jens Gulden29 * @version 1.030 */31 public class Constructor extends MemberExecutable {32 33 // ------------------------------------------------------------------------34 // --- constructor ---35 // ------------------------------------------------------------------------36 /**37 * Creates a new instance of Constructor.38 */39 public Constructor(Class c) {40 super(c);41 }42 43 } // end Constructor44