Jamie Echlin
- Total activity 157
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 79
-
Created programatically adding extensions
Does anyone have an example of programatically adding an extension point? I have a few working examples of doing it but they usually relying on clearing caches using reflection to access private va... -
Created 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 ... -
Created 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... -
Created 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... -
Created reference injector - set return type
PlannedHi - 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... -
Created 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... -
Created 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... -
Created detecting when actions are complete
AnsweredHi - 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... -
Created find virtual file for relative path under content roots
AnsweredGiven 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... -
Created disable psi stubs indexing for files in directory
AnsweredHi - 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...