1 /*2 * @(#)ConstructorDeclaration.java 1.1 04/01/263 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package com.sun.mirror.declaration;9 10 11 /**12 * Represents a constructor of a class or interface.13 *14 * @author Joe Darcy15 * @author Scott Seligman16 * @version 1.1 04/01/2617 * @since 1.518 */19 20 public interface ConstructorDeclaration extends ExecutableDeclaration {21 }22