*/
public MethodDeclaration createDeclareAnnotationDeclaration(
CompilationResult result, ASTNode pseudoTokens,
Annotation annotation, Parser parser) {
DeclareAnnotation declare = (DeclareAnnotation) ((PseudoTokens)pseudoTokens).parseAnnotationDeclare(parser);
DeclareAnnotationDeclaration decl = new DeclareAnnotationDeclaration(result,declare,annotation);
return decl;
}