this.invisible = invisible;
originalAnnotationExpr = annotationExpr;
originalExpression = expr;
try
{
AnnotationParser parser = new AnnotationParser(new StringReader(annotationExpr));
org.jboss.aop.annotation.factory.duplicate.ast.ASTStart start = parser.Start();
annotation = (ASTAnnotation) start.jjtGetChild(0);
}
catch (ParseException e)
{
throw new RuntimeException(annotationExpr, e); //To change body of catch statement use Options | File Templates.
}
try
{
TypeExpressionParser parser = new TypeExpressionParser(new StringReader(expr));
target = parser.Start();
}
catch (org.jboss.aop.pointcut.ast.ParseException e)
{
throw new RuntimeException(expr, e); //To change body of catch statement use Options | File Templates.
}