blob: ad7c6dcacbe628a2c49cd93fc6fde144f237a480 [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;
public class ParameterAnnotation extends ClassFileStruct {
private static final Annotation[] NO_ENTRIES = new Annotation[0];
private int annotationsNumber;
private Annotation[] annotations;
private int readOffset;
/**
* Constructor for Annotation.
*
* @param classFileBytes
* @param constantPool
* @param offset
* @throws ClassFormatException
*/
public ParameterAnnotation(byte[] classFileBytes, ConstantPool constantPool, int offset) throws ClassFormatException {
final int length = u2At(classFileBytes, 0, offset);
this.readOffset = 2;
this.annotationsNumber = length;
if (length != 0) {
this.annotations = new Annotation[length];
for (int i = 0; i < length; i++) {
Annotation annotation = new Annotation(classFileBytes, constantPool, offset + this.readOffset);
this.annotations[i] = annotation;
this.readOffset += annotation.sizeInBytes();
}
} else {
this.annotations = NO_ENTRIES;
}
}
int sizeInBytes() {
return this.readOffset;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.util.IParameterAnnotation#getAnnotations()
*/
public Annotation[] getAnnotations() {
return this.annotations;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.util.IParameterAnnotation#getAnnotationsNumber()
*/
public int getAnnotationsNumber() {
return this.annotationsNumber;
}
}