Searched refs:paramIndex (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DAbstractWrapperBeanGenerator.java105 private List<Annotation> collectJAXBAnnotations(M method, int paramIndex) { argument
108 Annotation ann = annReader.getMethodParameterAnnotation(jaxbClass, method, paramIndex, null);
139 int paramIndex = -1;
142 paramIndex++;
143 WebParam webParam = annReader.getMethodParameterAnnotation(WebParam.class, method, paramIndex, null);
155 ? webParam.name() : "arg"+paramIndex;
160 List<Annotation> jaxbAnnotation = collectJAXBAnnotations(method, paramIndex);
206 int paramIndex = -1;
208 paramIndex++;
211 WebParam webParam = annReader.getMethodParameterAnnotation(WebParam.class, method, paramIndex, nul
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DAnnotationReader.java132 Class<A> annotation, M method, int paramIndex, Locatable srcPos );
131 getMethodParameterAnnotation( Class<A> annotation, M method, int paramIndex, Locatable srcPos ) argument
H A DRuntimeInlineAnnotationReader.java81 public <A extends Annotation> A getMethodParameterAnnotation(Class<A> annotation, Method method, int paramIndex, Locatable srcPos) { argument
82 Annotation[] pa = method.getParameterAnnotations()[paramIndex];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/apt/
H A DInlineAnnotationReaderImpl.java116 public <A extends Annotation> A getMethodParameterAnnotation(Class<A> a, MethodDeclaration m, int paramIndex, Locatable srcPos) { argument
119 params[paramIndex].getAnnotation(a), srcPos );
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.java750 * @param paramIndex
752 private void emitPushArgument(Name name, int paramIndex) { argument
753 Object arg = name.arguments[paramIndex];
754 char ptype = name.function.parameterType(paramIndex);
759 emitImplicitConversion(n.type, mtype.parameterType(paramIndex));
767 emitImplicitConversion('L', mtype.parameterType(paramIndex));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceVisitor.java655 int paramIndex = 0;
657 if (!isLegalParameter(parameter, method, typeDecl, paramIndex++))
689 int paramIndex) {
706 builder.onError(param.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_HOLDER_PARAMETERS_MUST_NOT_BE_IN_ONLY(typeDecl.getQualifiedName(), method.toString(), paramIndex));
708 builder.onError(param.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_NON_IN_PARAMETERS_MUST_BE_HOLDER(typeDecl.getQualifiedName(), method.toString(), paramIndex));
686 isLegalParameter(ParameterDeclaration param, MethodDeclaration method, TypeDeclaration typeDecl, int paramIndex) argument
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSet.java494 * @param paramIndex the first parameter is 1, the second is 2, ...
501 void setNull (int paramIndex, int sqlType, String typeName) argument

Completed in 246 milliseconds