Package org.aspectj.org.eclipse.jdt.core.dom

Examples of org.aspectj.org.eclipse.jdt.core.dom.ASTNode


  }
  public void setName(SimpleName pointcutName) {
    if (pointcutName == null) {
      throw new IllegalArgumentException();
    }
    ASTNode oldChild = this.pointcutName;
    preReplaceChild(oldChild, pointcutName, NAME_PROPERTY);
    this.pointcutName = pointcutName;
    postReplaceChild(oldChild, pointcutName, NAME_PROPERTY);
  }
View Full Code Here


  }
  public void setBody(PointcutDesignator body) {
    if (body == null) {
      throw new IllegalArgumentException();
    }
    ASTNode oldChild = this.body;
    preReplaceChild(oldChild, body, BODY_PROPERTY);
    this.body = body;
    postReplaceChild(oldChild, body, BODY_PROPERTY);
  }
View Full Code Here

  }
  public void setLeft(PointcutDesignator left) {
    if (left == null) {
      throw new IllegalArgumentException();
    }
    ASTNode oldChild = this.left;
    preReplaceChild(oldChild, left, LEFT_PROPERTY);
    this.left = left;
    postReplaceChild(oldChild, left, LEFT_PROPERTY);
  }
View Full Code Here

  }
  public void setRight(PointcutDesignator right) {
    if (right == null) {
      throw new IllegalArgumentException();
    }
    ASTNode oldChild = this.right;
    preReplaceChild(oldChild, right, RIGHT_PROPERTY);
    this.right = right;
    postReplaceChild(oldChild, right, RIGHT_PROPERTY);
  }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.core.dom.ASTNode

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.