Examples of ProgramElement


Examples of org.aspectj.asm.internal.ProgramElement

    // For intertype decls, use the modifiers from the original signature, not the generated method

    if (methodDeclaration instanceof InterTypeDeclaration) {
      InterTypeDeclaration itd = (InterTypeDeclaration) methodDeclaration;
      ResolvedMember sig = itd.getSignature();
      peNode = new ProgramElement(
            "",
            IProgramElement.Kind.ERROR,
            makeLocation(methodDeclaration),
            (sig!=null?sig.getModifiers():0),
            "",
            new ArrayList())
   
    } else {
      peNode = new ProgramElement(
        "",
        IProgramElement.Kind.ERROR,
        makeLocation(methodDeclaration),
        methodDeclaration.modifiers,
        "",
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.