Package org.aspectj.weaver

Examples of org.aspectj.weaver.LintMessage


        kind = IMessage.WARNING;
      }
    }
    IMessage msg = null;
    if (isLintMessage) {
      msg = new LintMessage(problem.getMessage(), extraDetails, world.getLint().fromKey(lintkey), kind, sourceLocation, null,
          seeAlsoLocations, declared, problem.getID(), problem.getSourceStart(), problem.getSourceEnd());
    } else {
      msg = new Message(problem.getMessage(), extraDetails, kind, sourceLocation, null, seeAlsoLocations, declared, problem
          .getID(), problem.getSourceStart(), problem.getSourceEnd());
    }
View Full Code Here

TOP

Related Classes of org.aspectj.weaver.LintMessage

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.