Examples of DeclareErrorOrWarning


Examples of org.aspectj.weaver.patterns.DeclareErrorOrWarning

    int deCtr = 1;
    int dwCtr = 1;
    for (Iterator iter = children.iterator(); iter.hasNext();) {
      Object element = iter.next();
      if (element instanceof DeclareErrorOrWarning) {
        DeclareErrorOrWarning decl = (DeclareErrorOrWarning) element;
        int counter = 0;
        if (decl.isError()) {
          counter = deCtr++;
        } else {
          counter = dwCtr++;
        }
        parent.addChild(createDeclareErrorOrWarningChild(asm, aspect, decl, counter));
View Full Code Here

Examples of org.aspectj.weaver.patterns.DeclareErrorOrWarning

      String annString = da.getAnnotationString();
      String kind = da.getKind().toString();
      annotation = AtAspectJAnnotationFactory.createDeclareAnnAnnotation(
              patternString,annString,kind,declarationSourceStart);
    } else if (declareDecl instanceof DeclareErrorOrWarning) {
      DeclareErrorOrWarning dd = (DeclareErrorOrWarning) declareDecl;
      annotation = AtAspectJAnnotationFactory
                  .createDeclareErrorOrWarningAnnotation(dd.getPointcut().toString(),dd.getMessage(),dd.isError(),declarationSourceStart);
    } else if (declareDecl instanceof DeclareParents) {
      DeclareParents dp = (DeclareParents) declareDecl;
      String childPattern = dp.getChild().toString();
      Collection parentPatterns = dp.getParents().getExactTypes();
      StringBuffer parents = new StringBuffer();
View Full Code Here

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

Examples of org.aspectj.weaver.patterns.DeclareErrorOrWarning

                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
Copyright © 2018 www.massapi.com. 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.