1. /*
  2. * @(#)VoidType.java 1.1 04/01/26
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.mirror.type;
  8. import com.sun.mirror.declaration.MethodDeclaration;
  9. /**
  10. * A pseudo-type representing the type of <tt>void</tt>.
  11. *
  12. * @author Joseph D. Darcy
  13. * @author Scott Seligman
  14. * @version 1.1 04/01/26
  15. *
  16. * @see MethodDeclaration#getReturnType()
  17. * @since 1.5
  18. */
  19. public interface VoidType extends TypeMirror {
  20. }