Jamie Echlin
- 活动总数 157
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 79
-
创建于 httpRequestHandler, server sent events or websockets
Afternoon, I have some httpRequestHandlers. I wanted to use websockets but didn't have time to write the server-side properly so I just embedded Ratpack and fired it up on a spare port. That works ... -
创建于 resolve generic types
Hi, I have what I think is quite a simple problem. Given java classes abstract class Xxx<T> { public T getFoo() { return null; }}public class Yyy extends Xxx<Double> { } I want to get the return ty... -
创建于 ProcessCancelledException when debugging
Hi - When debugging various extension points, such as a CompletionContributor, after 10 seconds any PSI operation that I execute in the debugger throws ProcessCanceledException. This is a bit anno... -
创建于 reference injector - set return type
已计划Hi - I have the following API: Object getThing(String s) Depending on the value of the argument, the return type will be a String or Integer etc. The problem is in usage, you need to work out what... -
创建于 groovy dynamic methods contributor
Hi - I have a class along these lines: abstract class MyBaseScript extends Script { void methodMissing(String name, Object args) { ... }} And then some construct like this: import groo... -
创建于 set psi class super class, completions not working
Morning, I am setting the super class for a script in the same way that org.jetbrains.plugins.groovy.transformations.impl.BaseScriptTransformationSupport sets it. So I am trying to do the moral equ... -
创建于 detecting when actions are complete
已回答Hi - Is there are a way to discover when a background job is completed. I am curious about the general case but thinking specifically about executing the ReformatCodeAction - I can't find a way to... -
创建于 find virtual file for relative path under content roots
已回答Given a relative path, eg foo/bar.java, is it possible to search each content root in the project for that relative path and thus arrive at a VirtualFile? This will be a complete path under a conte... -
创建于 disable psi stubs indexing for files in directory
已回答Hi - is it possible to disable indexing of externally-visible declarations for a particular file/directory? I can add the directory to the excludes, but that has certain other consequences, such a... -
已编辑于 convert string with generics to PsiType
已回答Is there a shortcut method for getting a PsiType from a string like: java.util.List<java.lang.Integer> Given List and Integer I can create this, but was hoping there was some magic somewhere. Somet...