Package org.aspectj.org.eclipse.jdt.internal.compiler.ast

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.ast.TypeDeclaration.checkConstructors()


    // mark initializers with local type mark if needed
    markInitializersWithLocalType(typeDecl);

    //convert constructor that do not have the type's name into methods
    boolean hasConstructor = typeDecl.checkConstructors((Parser)this);
   
    //add the default constructor when needed (interface don't have it)
    if (!hasConstructor) {
      switch(TypeDeclaration.kind(typeDecl.modifiers)) {
        case TypeDeclaration.CLASS_DECL :
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.