1 /*2 * @(#)VoidType.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.type;9 10 11 import com.sun.mirror.declaration.MethodDeclaration;12 13 14 /**15 * A pseudo-type representing the type of <tt>void</tt>.16 *17 * @author Joseph D. Darcy18 * @author Scott Seligman19 * @version 1.1 04/01/2620 *21 * @see MethodDeclaration#getReturnType()22 * @since 1.523 */24 25 public interface VoidType extends TypeMirror {26 }27