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

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


* This is a factory for type declaration that returns the Aj subclass of typedeclaration.
* @author AndyClement
*/
public class AjTypeDeclFactory implements ITypeDeclFactory {
  public TypeDeclaration createTypeFor(AST ast) {
    return new AjTypeDeclaration(ast);
  }
View Full Code Here

TOP

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

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.