Searched refs:getParameterAnnotations (Results 1 - 25 of 27) sorted by relevance

12

/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.meta/src/jdk/vm/ci/meta/
H A DResolvedJavaMethod.java277 return method.getParameterAnnotations(annotationClass)[index];
281 return method.getParameterAnnotations()[index];
331 * @see Method#getParameterAnnotations()
333 Annotation[][] getParameterAnnotations(); method in interface:ResolvedJavaMethod
400 Annotation[][] parameterAnnotations = getParameterAnnotations();
423 default <T extends Annotation> T[] getParameterAnnotations(Class<T> annotationClass) { method in interface:ResolvedJavaMethod
424 Annotation[][] parameterAnnotations = getParameterAnnotations();
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/model/
H A DReflectAnnotationReader.java47 public Annotation[][] getParameterAnnotations(final Method method) { method in class:ReflectAnnotationReader
50 return method.getParameterAnnotations();
H A DExternalMetadataReader.java190 public Annotation[][] getParameterAnnotations(final Method m) { method in class:ExternalMetadataReader
193 return ExternalMetadataReader.super.getParameterAnnotations(m);
198 Annotation[][] a = m.getParameterAnnotations();
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/databinding/
H A DMetadataReader.java41 public Annotation[][] getParameterAnnotations(final Method method); method in interface:MetadataReader
/openjdk9/langtools/test/tools/javac/lambda/
H A DSE5AnnotationsOnLambdaParameters.java51 for (Annotation[] annots : m.getParameterAnnotations()) {
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/
H A DBridgeMethodUtils.java155 * A helper for {@link ResolvedJavaMethod#getParameterAnnotations()} that handles the absence of
158 public static Annotation[][] getParameterAnnotations(ResolvedJavaMethod method) { method in class:BridgeMethodUtils
159 Annotation[][] a = method.getParameterAnnotations();
163 a = bridged.getParameterAnnotations();
/openjdk9/jdk/test/java/lang/annotation/
H A DUnitTest.java1557 checkScalarTypes((ScalarTypes) m.getParameterAnnotations()[0][0], m);
1565 checkScalarTypesOverrideDefault((ScalarTypesWithDefault) m.getParameterAnnotations()[0][0], m);
1573 checkScalarTypesAcceptDefault((ScalarTypesWithDefault) m.getParameterAnnotations()[0][0], m);
1583 checkArrayTypes0((ArrayTypes) m.getParameterAnnotations()[0][0], m);
1591 checkArrayTypes1((ArrayTypes) m.getParameterAnnotations()[0][0], m);
1599 checkArrayTypes2((ArrayTypes) m.getParameterAnnotations()[0][0], m);
1607 checkArrayTypesOverrideDefault((ArrayTypesWithDefault) m.getParameterAnnotations()[0][0], m);
1615 checkArrayTypesAcceptDefault((ArrayTypesWithDefault) m.getParameterAnnotations()[0][0], m);
1624 checkMarker((Marker) m.getParameterAnnotations()[0][0], m);
1633 checkSingleMemberByte((SingleMemberByte) m.getParameterAnnotations()[
[all...]
H A DTestConstructorParameterAnnotations.java87 Arrays.deepToString(ctor.getParameterAnnotations());
234 * getParameterAnnotations on a constructor.
H A DParameterAnnotations.java28 * getParameterAnnotations, including freedom from security
88 Annotation[][] ann = m.getParameterAnnotations();
/openjdk9/jdk/test/java/lang/reflect/Constructor/
H A DTestParameterAnnotations.java27 * @summary Verify getParameterAnnotations doesn't throw spurious errors
52 Annotation[][] annotationArray = ctor.getParameterAnnotations();
87 " failures calling Constructor.getParameterAnnotations");
/openjdk9/jdk/test/java/lang/annotation/Missing/
H A DMissingTest.java89 annotationsArray = m.getParameterAnnotations();
/openjdk9/jdk/test/java/lang/instrument/
H A DRedefineMethodWithAnnotationsApp.java63 method.getParameterAnnotations();
/openjdk9/jdk/src/java.management/share/classes/javax/management/
H A DMBeanConstructorInfo.java212 final Annotation[][] annots = cn.getParameterAnnotations();
H A DMBeanOperationInfo.java315 final Annotation[][] annots = method.getParameterAnnotations();
/openjdk9/jdk/test/java/lang/annotation/typeAnnotations/
H A DTestConstructorParameterTypeAnnotations.java85 Arrays.deepToString(ctor.getParameterAnnotations());
214 * getParameterAnnotations on a constructor.
/openjdk9/hotspot/test/runtime/8007320/
H A DConstMethodTest.java121 Annotation[][] ann = m.getParameterAnnotations();
/openjdk9/jdk/src/java.base/share/classes/java/lang/reflect/
H A DParameter.java305 return executable.getParameterAnnotations()[index];
H A DConstructor.java587 public Annotation[][] getParameterAnnotations() { method in class:Constructor
H A DExecutable.java544 public abstract Annotation[][] getParameterAnnotations(); method in class:Executable
H A DMethod.java709 public Annotation[][] getParameterAnnotations() { method in class:Method
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DRuntimeInlineAnnotationReader.java82 Annotation[] pa = method.getParameterAnnotations()[paramIndex];
/openjdk9/jdk/test/com/sun/jdi/
H A DRedefineAnnotation.sh145 Annotation my_annotations[][] = my_method.getParameterAnnotations();
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotResolvedJavaMethodImpl.java495 public Annotation[][] getParameterAnnotations() { method in class:HotSpotResolvedJavaMethodImpl
497 return javaMethod == null ? new Annotation[signature.getParameterCount(false)][0] : javaMethod.getParameterAnnotations();
/openjdk9/jdk/src/java.management/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanIntrospector.java216 Annotation[][] annots = method.getParameterAnnotations();
/openjdk9/hotspot/test/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/
H A DTestResolvedJavaMethod.java339 Annotation[][] annotations = method.getParameterAnnotations();

Completed in 299 milliseconds

12