private void convertTo(final AnnotationType type)
{
BodyDeclaration node = (BodyDeclaration) annotation.getParent();
String value = this.getLiteralValue();
for (Object o : node.modifiers())
{
if (o.equals(annotation))
{
node.modifiers().remove(annotation);
Annotation<O> na = new AnnotationImpl<O, T>(parent, type);