blob: 9d871b1b4836044205c1c29eb6c2ebc89226bd51 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2011 BEA Systems, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* tyeung@bea.com - initial API and implementation
* IBM Corporation - fix for bug 342757
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.classfmt;
import org.eclipse.jdt.internal.compiler.env.IBinaryAnnotation;
import org.eclipse.jdt.internal.compiler.util.Util;
class MethodInfoWithParameterAnnotations extends MethodInfoWithAnnotations {
private AnnotationInfo[][] parameterAnnotations;
MethodInfoWithParameterAnnotations(MethodInfo methodInfo, AnnotationInfo[] annotations, AnnotationInfo[][] parameterAnnotations) {
super(methodInfo, annotations);
if (methodInfo.isConstructor()) {
int parametersCount = Util.getParameterCount(methodInfo.getMethodDescriptor());
if (parameterAnnotations.length < parametersCount) {
AnnotationInfo[][] temp = new AnnotationInfo[parametersCount][];
System.arraycopy(parameterAnnotations, 0, temp, 1, parameterAnnotations.length);
this.parameterAnnotations = temp;
} else {
this.parameterAnnotations = parameterAnnotations;
}
} else {
this.parameterAnnotations = parameterAnnotations;
}
}
public IBinaryAnnotation[] getParameterAnnotations(int index) {
return this.parameterAnnotations[index];
}
protected void initialize() {
for (int i = 0, l = this.parameterAnnotations == null ? 0 : this.parameterAnnotations.length; i < l; i++) {
AnnotationInfo[] infos = this.parameterAnnotations[i];
for (int j = 0, k = infos == null ? 0 : infos.length; j < k; j++)
infos[j].initialize();
}
super.initialize();
}
protected void reset() {
for (int i = 0, l = this.parameterAnnotations == null ? 0 : this.parameterAnnotations.length; i < l; i++) {
AnnotationInfo[] infos = this.parameterAnnotations[i];
for (int j = 0, k = infos == null ? 0 : infos.length; j < k; j++)
infos[j].reset();
}
super.reset();
}
protected void toStringContent(StringBuffer buffer) {
super.toStringContent(buffer);
for (int i = 0, l = this.parameterAnnotations == null ? 0 : this.parameterAnnotations.length; i < l; i++) {
buffer.append("param" + (i - 1)); //$NON-NLS-1$
buffer.append('\n');
AnnotationInfo[] infos = this.parameterAnnotations[i];
for (int j = 0, k = infos == null ? 0 : infos.length; j < k; j++) {
buffer.append(infos[j]);
buffer.append('\n');
}
}
}
}