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

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


  public MethodDeclaration createInterTypeMethodDeclaration(CompilationResult result) {
    return new InterTypeMethodDeclaration(result, null);
  }

  public MethodDeclaration createInterTypeConstructorDeclaration(CompilationResult result) {
    return new InterTypeConstructorDeclaration(result, null);
  }
View Full Code Here


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

TOP

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

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.