blob: 1f2b84011339e7831d28d06b3bebdd1016740011 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.internal.repository.comparator.java;
public class RuntimeVisibleParameterAnnotationsAttribute extends ClassFileAttribute {
private static final ParameterAnnotation[] NO_ENTRIES = new ParameterAnnotation[0];
private int parametersNumber;
private ParameterAnnotation[] parameterAnnotations;
/**
* Constructor for RuntimeVisibleParameterAnnotations.
* @param classFileBytes
* @param constantPool
* @param offset
* @throws ClassFormatException
*/
public RuntimeVisibleParameterAnnotationsAttribute(byte[] classFileBytes, ConstantPool constantPool, int offset) throws ClassFormatException {
super(classFileBytes, constantPool, offset);
final int length = u1At(classFileBytes, 6, offset);
this.parametersNumber = length;
if (length != 0) {
int readOffset = 7;
this.parameterAnnotations = new ParameterAnnotation[length];
for (int i = 0; i < length; i++) {
ParameterAnnotation parameterAnnotation = new ParameterAnnotation(classFileBytes, constantPool, offset + readOffset);
this.parameterAnnotations[i] = parameterAnnotation;
readOffset += parameterAnnotation.sizeInBytes();
}
} else {
this.parameterAnnotations = NO_ENTRIES;
}
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.util.IRuntimeVisibleParameterAnnotations#getAnnotations()
*/
public ParameterAnnotation[] getParameterAnnotations() {
return this.parameterAnnotations;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.util.IRuntimeVisibleParameterAnnotations#getParametersNumber()
*/
public int getParametersNumber() {
return this.parametersNumber;
}
}