Package org.aspectj.lang.reflect

Examples of org.aspectj.lang.reflect.PerClauseKind


  /**
   * Return whether the aspect is defined as "perthis" or "pertarget".
   */
  public boolean isPerThisOrPerTarget() {
    PerClauseKind kind = getAjType().getPerClause().getKind();
    return (kind == PerClauseKind.PERTARGET || kind == PerClauseKind.PERTHIS);
  }
View Full Code Here


  /**
   * Return whether the aspect is defined as "pertypewithin".
   */
  public boolean isPerTypeWithin() {
    PerClauseKind kind = getAjType().getPerClause().getKind();
    return (kind == PerClauseKind.PERTYPEWITHIN);
  }
View Full Code Here

  /**
   * Return whether the aspect is defined as "perthis" or "pertarget".
   */
  public boolean isPerThisOrPerTarget() {
    PerClauseKind kind = getAjType().getPerClause().getKind();
    return (kind == PerClauseKind.PERTARGET || kind == PerClauseKind.PERTHIS);
  }
View Full Code Here

  /**
   * Return whether the aspect is defined as "pertypewithin".
   */
  public boolean isPerTypeWithin() {
    PerClauseKind kind = getAjType().getPerClause().getKind();
    return (kind == PerClauseKind.PERTYPEWITHIN);
  }
View Full Code Here

  /**
   * Return whether the aspect is defined as "perthis" or "pertarget".
   */
  public boolean isPerThisOrPerTarget() {
    PerClauseKind kind = getAjType().getPerClause().getKind();
    return (kind == PerClauseKind.PERTARGET || kind == PerClauseKind.PERTHIS);
  }
View Full Code Here

  /**
   * Return whether the aspect is defined as "pertypewithin".
   */
  public boolean isPerTypeWithin() {
    PerClauseKind kind = getAjType().getPerClause().getKind();
    return (kind == PerClauseKind.PERTYPEWITHIN);
  }
View Full Code Here

TOP

Related Classes of org.aspectj.lang.reflect.PerClauseKind

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.