blob: cc95c2f54f6206c06e5fb19861089a1c9723ff6d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 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:
* tyeung@bea.com - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.apt.core.internal.declaration;
import com.sun.mirror.declaration.AnnotationTypeDeclaration;
import com.sun.mirror.declaration.AnnotationTypeElementDeclaration;
import com.sun.mirror.declaration.AnnotationValue;
import com.sun.mirror.declaration.ParameterDeclaration;
import com.sun.mirror.util.DeclarationVisitor;
import java.util.Collection;
import java.util.Collections;
import org.eclipse.jdt.apt.core.internal.env.BaseProcessorEnv;
import org.eclipse.jdt.apt.core.internal.util.Factory;
import org.eclipse.jdt.core.dom.ASTNode;
import org.eclipse.jdt.core.dom.AnnotationTypeMemberDeclaration;
import org.eclipse.jdt.core.dom.IMethodBinding;
public class AnnotationElementDeclarationImpl extends MethodDeclarationImpl implements AnnotationTypeElementDeclaration
{
public AnnotationElementDeclarationImpl(final IMethodBinding binding,
final BaseProcessorEnv env)
{
super(binding, env);
}
public void accept(DeclarationVisitor visitor)
{
visitor.visitAnnotationTypeElementDeclaration(this);
}
public AnnotationTypeDeclaration getDeclaringType()
{
return (AnnotationTypeDeclaration)super.getDeclaringType();
}
/**
* @return the default value of this annotation element if one exists.
* Return null if the annotation element is defined in binary (feature not available right now).
* Return null if the annotation element is part of a seconary type that is defined outside
* the file associated with the environment.
*/
public AnnotationValue getDefaultValue()
{
final IMethodBinding binding = getDeclarationBinding();
final Object defaultValue = binding.getDefaultValue();
return Factory.createDefaultValue(defaultValue, this, _env);
}
ASTNode getAstNodeForDefault()
{
final AnnotationTypeMemberDeclaration decl = (AnnotationTypeMemberDeclaration)getAstNode();
if( decl != null )
return decl.getDefault();
return null;
}
public Collection<ParameterDeclaration> getParameters(){ return Collections.emptyList(); }
public MirrorKind kind(){ return MirrorKind.ANNOTATION_ELEMENT; }
}