Package org.aspectj.lang.annotation

Examples of org.aspectj.lang.annotation.AdviceName


 
  public String getName() {
    String adviceName = adviceMethod.getName();
    if (adviceName.startsWith("ajc$")) {
      adviceName = "";
      AdviceName name = adviceMethod.getAnnotation(AdviceName.class);
      if (name != null) adviceName = name.value();
    }
    return adviceName;
  }
View Full Code Here

TOP

Related Classes of org.aspectj.lang.annotation.AdviceName

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.