blob: 7c4d7254808f468e5778aadaaa8f63afa34bee21 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.core.internal.jdtutility;
import org.eclipse.jdt.core.dom.ASTNode;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jdt.core.dom.Expression;
import org.eclipse.jpt.utility.internal.StringTools;
/**
* Adapt a member and a declaration annotation element adapter.
*/
public class MemberAnnotationElementAdapter<T>
implements AnnotationElementAdapter<T>
{
private final Member member;
private final DeclarationAnnotationElementAdapter<T> daea;
// ********** constructor **********
public MemberAnnotationElementAdapter(Member member, DeclarationAnnotationElementAdapter<T> daea) {
super();
this.member = member;
this.daea = daea;
}
// ********** AnnotationElementAdapter implementation **********
public T getValue() {
return this.daea.getValue(this.member.modifiedDeclaration());
}
public T getValue(CompilationUnit astRoot) {
return this.daea.getValue(this.member.modifiedDeclaration(astRoot));
}
public void setValue(T value) {
this.edit(this.buildSetValueEditor(value));
}
public Expression expression() {
return this.daea.expression(this.member.modifiedDeclaration());
}
public Expression expression(CompilationUnit astRoot) {
return this.daea.expression(this.member.modifiedDeclaration(astRoot));
}
public ASTNode astNode() {
return this.daea.astNode(this.member.modifiedDeclaration());
}
public ASTNode astNode(CompilationUnit astRoot) {
return this.daea.astNode(this.member.modifiedDeclaration(astRoot));
}
@Override
public String toString() {
return StringTools.buildToStringFor(this, this.daea);
}
// ********** internal methods **********
protected void edit(Member.Editor editor) {
this.member.edit(editor);
}
protected Member.Editor buildSetValueEditor(T value) {
return new SetValueEditor<T>(value, this.daea);
}
// ********** member classes **********
protected static class SetValueEditor<T> implements Member.Editor {
private final DeclarationAnnotationElementAdapter<T> daea;
private final T value;
SetValueEditor(T value, DeclarationAnnotationElementAdapter<T> daea) {
super();
this.value = value;
this.daea = daea;
}
public void edit(ModifiedDeclaration declaration) {
this.daea.setValue(this.value, declaration);
}
@Override
public String toString() {
return StringTools.buildToStringFor(this);
}
}
}