1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 8 package test.compliance.server.support;9 10 11 /**12 * Support class that doesn't have a default constructor.13 *14 * @author <a HREF="mailto:juha@jboss.org">Juha Lindfors</a>.15 * @version $Revision: 1.4 $16 * 17 */18 public class ConstructorTest619 {20 21 public ConstructorTest6(String foo) {}22 23 }24 25 26 27 28