Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/RuntimeVisibleParameterAnnotationsAttribute.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/RuntimeVisibleParameterAnnotationsAttribute.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/RuntimeVisibleParameterAnnotationsAttribute.java b/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/RuntimeVisibleParameterAnnotationsAttribute.java
deleted file mode 100644
index 1f2b84011..000000000
--- a/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/RuntimeVisibleParameterAnnotationsAttribute.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*******************************************************************************
- * 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;
- }
-}

Back to the top