com.github.javaparser.metamodel.ClassOrInterfaceDeclarationMetaModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaparser-metamodel Show documentation
Show all versions of javaparser-metamodel Show documentation
A description of all the types nodes that can appear in the AST
The newest version!
package com.github.javaparser.metamodel;
import java.util.Optional;
public class ClassOrInterfaceDeclarationMetaModel extends BaseNodeMetaModel {
ClassOrInterfaceDeclarationMetaModel(Optional superBaseNodeMetaModel) {
super(superBaseNodeMetaModel, com.github.javaparser.ast.body.ClassOrInterfaceDeclaration.class, "ClassOrInterfaceDeclaration", "com.github.javaparser.ast.body", false, false);
}
public PropertyMetaModel extendedTypesPropertyMetaModel;
public PropertyMetaModel implementedTypesPropertyMetaModel;
public PropertyMetaModel isInterfacePropertyMetaModel;
public PropertyMetaModel typeParametersPropertyMetaModel;
}