// this should give you @jibber
// an annotation with no parameters
new MarkerAnnotationExpr(new NameExpr("jibber"));
NormalAnnotationExpr accepts a list of MemberValuePair each of which consist of a nameexpr and a valueexpr, that's for "normal" annotations with member/values
SingleMemberAnnotationExpr is for the special case of a "value" value in which the token "value" and the "=" can be omitted
HTH