Home
last modified time | relevance | path

Searched refs:parameterAnnotation (Results 1 – 4 of 4) sorted by relevance

/external/jcommander/src/main/java/com/beust/jcommander/
DParameterDescription.java33 private Parameter parameterAnnotation; field in ParameterDescription
63 parameterAnnotation = annotation; in ParameterDescription()
64 wrappedParameter = new WrappedParameter(parameterAnnotation); in ParameterDescription()
118 if (parameterAnnotation != null) { in init()
121 && parameterAnnotation.description().isEmpty()) { in init()
124 description = parameterAnnotation.description(); in init()
126 initDescription(description, parameterAnnotation.descriptionKey(), in init()
127 parameterAnnotation.names()); in init()
145 if (parameterAnnotation != null) { in init()
146 validateDefaultValues(parameterAnnotation.names()); in init()
[all …]
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider.java326 for (Annotation parameterAnnotation : parameterAnnotations) { in createMethodMapping()
327 if (parameterAnnotation.annotationType() == Assisted.class) { in createMethodMapping()
/external/TestParameterInjector/src/main/java/com/google/testing/junit/testparameterinjector/
DTestParameterAnnotationMethodProcessor.java545 for (Annotation parameterAnnotation : parameterAnnotations) { in validateMethodOrConstructorParameters()
546 if (parameterAnnotation in validateMethodOrConstructorParameters()
1151 for (Annotation parameterAnnotation : parameterAnnotations) {
1154 if (parameterAnnotation.annotationType().equals(annotationType)) {
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DGeneratingAnnotatedClassesTestCase.java311 for (final ParameterAnnotationEntry parameterAnnotation : parameterAnnotations) in assertParameterAnnotations()
313 final AnnotationEntry[] annos= parameterAnnotation.getAnnotationEntries(); in assertParameterAnnotations()