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