logic: updated Java indexer

this fixes a lot of unsolved-symbol issues.
This commit is contained in:
malte_langkabel
2017-01-10 14:04:26 +01:00
parent d2ad2da1f1
commit 86def95c31
28 changed files with 893 additions and 1389 deletions
+4 -3
View File
@@ -2,7 +2,8 @@ package io.coati;
import java.util.List;
import com.github.javaparser.ast.TypeParameter;
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.Parameter;
import com.github.javaparser.ast.type.Type;
@@ -11,7 +12,7 @@ public interface CallableDecl
{
public BodyDeclaration getWrappedNode();
public String getName();
public List<TypeParameter> getTypeParameters();
public List<Parameter> getParameters();
public NodeList<TypeParameter> getTypeParameters();
public NodeList<Parameter> getParameters();
public Type getType();
}