org.eclipse.jdt.internal.compiler.classfmt.FieldInfoWithAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecj Show documentation
Show all versions of ecj Show documentation
This is Eclipse JDT Core Batch Compiler used by Scout SDK
The newest version!
/*******************************************************************************
* Copyright (c) 2005, 2013 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:
* [email protected] - initial API and implementation
* Andy Clement (GoPivotal, Inc) [email protected] - Contributions for
* Bug 407191 - [1.8] Binary access support for type annotations
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.classfmt;
public class FieldInfoWithAnnotation extends FieldInfo {
private AnnotationInfo[] annotations;
FieldInfoWithAnnotation(FieldInfo info, AnnotationInfo[] annos) {
super(info.reference, info.constantPoolOffsets, info.structOffset);
this.accessFlags = info.accessFlags;
this.attributeBytes = info.attributeBytes;
this.constant = info.constant;
this.constantPoolOffsets = info.constantPoolOffsets;
this.descriptor = info.descriptor;
this.name = info.name;
this.signature = info.signature;
this.signatureUtf8Offset = info.signatureUtf8Offset;
this.tagBits = info.tagBits;
this.wrappedConstantValue = info.wrappedConstantValue;
this.annotations = annos;
}
public org.eclipse.jdt.internal.compiler.env.IBinaryAnnotation[] getAnnotations() {
return this.annotations;
}
protected void initialize() {
if (this.annotations != null)
for (int i = 0, max = this.annotations.length; i < max; i++)
this.annotations[i].initialize();
super.initialize();
}
protected void reset() {
if (this.annotations != null)
for (int i = 0, max = this.annotations.length; i < max; i++)
this.annotations[i].reset();
super.reset();
}
public String toString() {
StringBuffer buffer = new StringBuffer(getClass().getName());
if (this.annotations != null) {
buffer.append('\n');
for (int i = 0; i < this.annotations.length; i++) {
buffer.append(this.annotations[i]);
buffer.append('\n');
}
}
toStringContent(buffer);
return buffer.toString();
}
}