1. /*
  2. * @(#)ParameterDeclaration.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.declaration;
  8. import com.sun.mirror.type.TypeMirror;
  9. /**
  10. * Represents a formal parameter of a method or constructor.
  11. *
  12. * @author Joseph D. Darcy
  13. * @author Scott Seligman
  14. * @version 1.1 04/01/26
  15. * @since 1.5
  16. */
  17. public interface ParameterDeclaration extends Declaration {
  18. /**
  19. * Returns the type of this parameter.
  20. *
  21. * @return the type of this parameter
  22. */
  23. TypeMirror getType();
  24. }