javacomplete
javacomplete copied to clipboard
java completion daemon
Please update junixsocket package source, I found the new version junixsocket is on github.
I don't use emacs and I would like to give this completer a try, but I don't understand well the role of the `prefix` and the `expression` in the request...
With the current master: ``` TRACE: could not complete at point: java.lang.ClassCastException: org.eclipse.jdt.core.dom.WildcardType cannot be cast to org.eclipse.jdt.core.dom.SimpleType at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.getTypeArguments(JavaCompleteCompilationUnit.java:161) at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.init(JavaCompleteCompilationUnit.java:291) at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.initStatement(JavaCompleteCompilationUnit.java:260) at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.init(JavaCompleteCompilationUnit.java:224) at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.(JavaCompleteCompilationUnit.java:78) at me.tillmanns.javacomplete.Complete.complete(Complete.java:95)...
With example ([context](https://github.com/jostillmanns/javacomplete/blob/master/src/main/java/me/tillmanns/javacomplete/ImportAdder.java#L112-L114)): ``` ArrayList fullyqualified = new ArrayList(); for(String s:f|) { sb.append(s+"\n"); } ``` there's no completion after `f`. The backtrace from the server output looks like this: ```...