com.github.javaparser.symbolsolver.javassistmodel.JavassistAnnotationDeclaration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaparser-symbol-solver-core Show documentation
Show all versions of javaparser-symbol-solver-core Show documentation
A Symbol Solver for Java, built on top of JavaParser (core)
The newest version!
/*
* Copyright (C) 2015-2016 Federico Tomassetti
* Copyright (C) 2017-2024 The JavaParser Team.
*
* This file is part of JavaParser.
*
* JavaParser can be used either under the terms of
* a) the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* b) the terms of the Apache License
*
* You should have received a copy of both licenses in LICENCE.LGPL and
* LICENCE.APACHE. Please refer to those files for details.
*
* JavaParser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
package com.github.javaparser.symbolsolver.javassistmodel;
import com.github.javaparser.resolution.TypeSolver;
import com.github.javaparser.resolution.declarations.*;
import com.github.javaparser.resolution.types.ResolvedReferenceType;
import com.github.javaparser.resolution.types.ResolvedType;
import com.github.javaparser.symbolsolver.logic.AbstractTypeDeclaration;
import java.lang.annotation.Inherited;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import javassist.CtClass;
/**
* @author Malte Skoruppa
*/
public class JavassistAnnotationDeclaration extends AbstractTypeDeclaration implements ResolvedAnnotationDeclaration {
private CtClass ctClass;
private TypeSolver typeSolver;
private JavassistTypeDeclarationAdapter javassistTypeDeclarationAdapter;
@Override
public String toString() {
return getClass().getSimpleName() + "{" + "ctClass=" + ctClass.getName() + ", typeSolver=" + typeSolver + '}';
}
public JavassistAnnotationDeclaration(CtClass ctClass, TypeSolver typeSolver) {
if (!ctClass.isAnnotation()) {
throw new IllegalArgumentException("Not an annotation: " + ctClass.getName());
}
this.ctClass = ctClass;
this.typeSolver = typeSolver;
this.javassistTypeDeclarationAdapter = new JavassistTypeDeclarationAdapter(ctClass, typeSolver, this);
}
@Override
public String getPackageName() {
return ctClass.getPackageName();
}
@Override
public String getClassName() {
String qualifiedName = getQualifiedName();
if (qualifiedName.contains(".")) {
return qualifiedName.substring(qualifiedName.lastIndexOf(".") + 1, qualifiedName.length());
}
return qualifiedName;
}
@Override
public String getQualifiedName() {
return ctClass.getName().replace('$', '.');
}
@Override
public boolean isAssignableBy(ResolvedType type) {
// TODO #1836
throw new UnsupportedOperationException();
}
@Override
public List getAllFields() {
return javassistTypeDeclarationAdapter.getDeclaredFields();
}
@Override
public boolean isAssignableBy(ResolvedReferenceTypeDeclaration other) {
throw new UnsupportedOperationException();
}
@Override
public List getAncestors(boolean acceptIncompleteList) {
return javassistTypeDeclarationAdapter.getAncestors(acceptIncompleteList);
}
@Override
public Set internalTypes() {
return javassistTypeDeclarationAdapter.internalTypes();
}
@Override
public Set getDeclaredMethods() {
// TODO #1838
throw new UnsupportedOperationException();
}
@Override
public boolean hasDirectlyAnnotation(String canonicalName) {
return ctClass.hasAnnotation(canonicalName);
}
@Override
public String getName() {
return getClassName();
}
/**
* Annotation declarations cannot have type parameters and hence this method always returns an empty list.
*
* @return An empty list.
*/
@Override
public List getTypeParameters() {
// Annotation declarations cannot have type parameters - i.e. we can always return an empty list.
return Collections.emptyList();
}
@Override
public Optional containerType() {
// TODO #1841
throw new UnsupportedOperationException(
"containerType() is not supported for " + this.getClass().getCanonicalName());
}
@Override
public List getConstructors() {
return Collections.emptyList();
}
@Override
public List getAnnotationMembers() {
return Stream.of(ctClass.getDeclaredMethods())
.map(m -> new JavassistAnnotationMemberDeclaration(m, typeSolver))
.collect(Collectors.toList());
}
@Override
public boolean isInheritable() {
try {
return ctClass.getAnnotation(Inherited.class) != null;
} catch (ClassNotFoundException e) {
return false;
}
}
}