blob: 40e578014f283f1d10cc732547a2bb4b85a49ce5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.jdt.internal.compiler.ast;
import org.eclipse.jdt.internal.compiler.ASTVisitor;
import org.eclipse.jdt.internal.compiler.lookup.BlockScope;
import org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope;
/**
* SingleMemberAnnotation node
*/
public class SingleMemberAnnotation extends Annotation {
public Expression memberValue;
public MemberValuePair singlePair; // fake pair, only value has accurate positions
public SingleMemberAnnotation(TypeReference type, int sourceStart) {
this.type = type;
this.sourceStart = sourceStart;
this.sourceEnd = type.sourceEnd;
}
/**
* @see org.eclipse.jdt.internal.compiler.ast.Annotation#memberValuePairs()
*/
public MemberValuePair[] memberValuePairs() {
this.singlePair = new MemberValuePair(VALUE, this.memberValue.sourceStart, this.memberValue.sourceEnd, this.memberValue);
return new MemberValuePair[] { singlePair };
}
public StringBuffer printExpression(int indent, StringBuffer output) {
super.printExpression(indent, output);
output.append('(');
this.memberValue.printExpression(indent, output);
return output.append(')');
}
public void traverse(ASTVisitor visitor, BlockScope scope) {
if (visitor.visit(this, scope)) {
if (this.memberValue != null) {
this.memberValue.traverse(visitor, scope);
}
}
visitor.endVisit(this, scope);
}
public void traverse(ASTVisitor visitor, CompilationUnitScope scope) {
if (visitor.visit(this, scope)) {
if (this.memberValue != null) {
this.memberValue.traverse(visitor, scope);
}
}
visitor.endVisit(this, scope);
}
}