01: /*******************************************************************************
02: * Copyright (c) 2004, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.jdt.core.util;
11:
12: /**
13: * Description of a runtime invisible parameter annotations attribute as described in the JVM specifications
14: * (added in J2SE 1.5).
15: *
16: * This interface may be implemented by clients.
17: *
18: * @since 3.0
19: */
20: public interface IRuntimeInvisibleParameterAnnotationsAttribute extends
21: IClassFileAttribute {
22:
23: /**
24: * Answer back the number of parameters as described in the JVM specifications.
25: *
26: * @return the number of parameters
27: */
28: int getParametersNumber();
29:
30: /**
31: * Answer back the parameter annotations. Answers an empty collection if none.
32: *
33: * @return the parameter annotations. Answers an empty collection if none.
34: */
35: IParameterAnnotation[] getParameterAnnotations();
36: }
|