* update JavaSymbolSolver to version 0.6.0 * moved to Javaparser 3.3.0 * fixed solving type parameter names in symbols solved in jar files * implemented ignoring name contexts in javassist and jre based method signatures to break infinite recursion
54 lines
985 B
Java
54 lines
985 B
Java
package com.sourcetrail;
|
|
|
|
import com.github.javaparser.ast.type.TypeParameter;
|
|
import com.github.javaparser.ast.NodeList;
|
|
import com.github.javaparser.ast.body.BodyDeclaration;
|
|
import com.github.javaparser.ast.body.MethodDeclaration;
|
|
import com.github.javaparser.ast.body.Parameter;
|
|
import com.github.javaparser.ast.type.Type;
|
|
|
|
public class CallableMethodDecl implements CallableDecl
|
|
{
|
|
private MethodDeclaration m_decl;
|
|
|
|
public CallableMethodDecl(MethodDeclaration decl)
|
|
{
|
|
m_decl = decl;
|
|
}
|
|
|
|
public BodyDeclaration getWrappedNode()
|
|
{
|
|
return m_decl;
|
|
}
|
|
|
|
public boolean isMethod()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public String getName()
|
|
{
|
|
return m_decl.getNameAsString();
|
|
}
|
|
|
|
public NodeList<TypeParameter> getTypeParameters()
|
|
{
|
|
return m_decl.getTypeParameters();
|
|
}
|
|
|
|
public NodeList<Parameter> getParameters()
|
|
{
|
|
return m_decl.getParameters();
|
|
}
|
|
|
|
public Type getType()
|
|
{
|
|
return m_decl.getType();
|
|
}
|
|
|
|
public boolean isStatic()
|
|
{
|
|
return m_decl.isStatic();
|
|
}
|
|
}
|