Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Steven McLeod
Total activity
13
Last activity
September 21, 2016 07:32
Member since
December 14, 2006 15:14
Following
0 users
Followed by
0 users
Votes
2
Subscriptions
4
Activity overview
Posts (3)
Comments (4)
Sort by recent activity
Recent activity
Votes
Created
October 20, 2011 12:28
$ readlink `which java`/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java
Community
IntelliJ IDEA Users
JDK1.7 on IDEA 10.5 and MacOS
0 votes
Created
December 15, 2006 13:34
So something like this?*final PsiDirectory psiDirectory = psiManager.findDirectory(currentFile);final PsiClass psiFile = psiManager.getElementFactory().createClass("NewClass");psiDirectory.add(psiF...
Community
IntelliJ IDEA Open API and Plugin Development
How to open a newly created class
0 votes
Created
December 15, 2006 14:00
Aha! That did the trick.For the sake of the next person searching for a solution to the same problem, I had to cast the returned instance as follows:*PsiClass createdClass = (PsiClass) psiDirectory...
Community
IntelliJ IDEA Open API and Plugin Development
How to open a newly created class
0 votes
Created
December 14, 2006 18:21
Thanks for the reply. The Javadoc API I was complaining about was indeed the one in the plugin dev pack. Typically, the documented methods have parameters with no description of what the parameters...
Community
IntelliJ IDEA Open API and Plugin Development
Developing a plugin seems too hard
0 votes