Alexei Orishchenko

- Total activity 178
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 69
-
Alexei Orishchenko created a post, References in Python string literals
I register reference provider through PsiReferenceContributor: public void registerReferenceProviders(PsiReferenceRegistrar registrar) { PsiElementPattern.Capture<PsiElement> pattern = P... -
Alexei Orishchenko created a post, [ANN] Ant debugger plugin
Ant Debugger enables Apache Ant build script debugging: Open build file in editor Set debug breakpoints (screenshot 1) Right click on editor to show context menu (screenshot 2) and select the "Debu... -
Alexei Orishchenko created a post, [ANN] CodeExplorer 1.3
CodeExplorer helps to analyze Java code: find all method call chains to the method and what methods called from the method. Analysis results (methods and calls between them) are shown on a handy ... -
Alexei Orishchenko commented, -
-
Alexei Orishchenko created a post, [ANN] CodeExplorer 1.2, code analysis plugin
CodeExplorer helps to analyze Java code: find all method call chains to the method, what methods called from the method, and other. Analysis results (methods and calls between them) are shown on a ... -
Alexei Orishchenko created a post, Interface method and its implementation
- How to find all implementations of interface method (PsiMethod)?- How to find interface method by its implementor (PsiMethod)?This works:for (HierarchicalMethodSignature sig: method.getHierarchic... -
Alexei Orishchenko created a post, Toolwindow with tabs
Is there special API (or samples) to create toolwindow with tabs (like search in Idea 8)? -
Alexei Orishchenko created a post, CodeExplorer 1.1
CodeExplorer is a free plugin that helps to explore method call chains. Its tool window shows methods and calls between them on a handy diagram. Now you can see usages and structure of several met... -
Alexei Orishchenko created a post, How to get COLORED text for the PSI element
I want to display colored source of a Java method, and I need to produce HTML like below for this:for ( ]]>I can use a JavaResursiveVisitor and EditorColorsManager for this, but its better to use s...