Package org.aspectj.weaver.patterns

Examples of org.aspectj.weaver.patterns.DeclareErrorOrWarning


     
    } else if (methodDeclaration instanceof DeclareDeclaration) {
      DeclareDeclaration declare = (DeclareDeclaration)methodDeclaration;
      String name = DEC_LABEL + " ";
      if (declare.declareDecl instanceof DeclareErrorOrWarning) {
        DeclareErrorOrWarning deow = (DeclareErrorOrWarning)declare.declareDecl;
       
        if (deow.isError()) {
          node.setKind( IProgramElement.Kind.DECLARE_ERROR);
          name += DECLARE_ERROR;
        } else {
          node.setKind( IProgramElement.Kind.DECLARE_WARNING);
          name += DECLARE_WARNING;
        }
        node.setName(name) ;
        node.setDetails("\"" + genDeclareMessage(deow.getMessage()) + "\"");
       
      } else if (declare.declareDecl instanceof DeclareParents) {

        node.setKind( IProgramElement.Kind.DECLARE_PARENTS);
        DeclareParents dp = (DeclareParents)declare.declareDecl;
View Full Code Here


                Pointcut pc = parsePointcut(declareError.getValue().stringifyValue(), struct, false);
                if (pc == null) {
                    hasError = false;//cannot parse pointcut
                } else {
                    pc .resolve(binding);
                    DeclareErrorOrWarning deow = new DeclareErrorOrWarning(true, pc, struct.field.getConstantValue().toString());
                    deow.setLocation(struct.context, -1, -1);
                    struct.ajAttributes.add(new AjAttribute.DeclareAttribute(deow));
                    hasError = true;
                }
            }
        }
        Annotation warning = getAnnotation(runtimeAnnotations, AjcMemberMaker.DECLAREWARNING_ANNOTATION);
        boolean hasWarning = false;
        if (warning != null) {
            ElementNameValuePair declareWarning = getAnnotationElement(warning, VALUE);
            if (declareWarning != null) {
                if (!STRING_DESC.equals(struct.field.getSignature()) || struct.field.getConstantValue() == null) {
                    reportError("@DeclareWarning used on a non String constant field", struct);
                    return false;
                }
                FormalBinding[] bindings = new org.aspectj.weaver.patterns.FormalBinding[0];
                IScope binding = new BindingScope(
                        struct.enclosingType,
                        struct.context,
                        bindings
                );
                Pointcut pc = parsePointcut(declareWarning.getValue().stringifyValue(), struct, false);
                if (pc == null) {
                    hasWarning = false;//cannot parse pointcut
                } else {
                    pc.resolve(binding);
                    DeclareErrorOrWarning deow = new DeclareErrorOrWarning(false, pc, struct.field.getConstantValue().toString());
                    deow.setLocation(struct.context, -1, -1);
                    struct.ajAttributes.add(new AjAttribute.DeclareAttribute(deow));
                    return hasWarning = true;
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.aspectj.weaver.patterns.DeclareErrorOrWarning

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.