Package org.aspectj.ajdt.internal.compiler.ast

Examples of org.aspectj.ajdt.internal.compiler.ast.AjMethodDeclaration


* @author Andy Clement
*/
public class DeclarationFactory implements IDeclarationFactory {

  public MethodDeclaration createMethodDeclaration(CompilationResult result) {
    return new AjMethodDeclaration(result);
  }
View Full Code Here


  /* (non-Javadoc)
   * @see org.eclipse.jdt.internal.compiler.parser.Parser.IDeclarationFactory#createMethodDeclaration(org.eclipse.jdt.internal.compiler.CompilationResult)
   */
  public MethodDeclaration createMethodDeclaration(CompilationResult result) {
    return new AjMethodDeclaration(result);
  }
View Full Code Here

TOP

Related Classes of org.aspectj.ajdt.internal.compiler.ast.AjMethodDeclaration

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.