1 /* 2 * @(#)ConstructorDoc.java 1.8 03/12/19 3 * 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.javadoc; 9 10 /** 11 * Represents a constructor of a java class. 12 * 13 * @since JDK1.2 14 * @author Robert Field 15 */ 16 public interface ConstructorDoc extends ExecutableMemberDoc { 17 } 18