Igor Spasic
- Total activity 58
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 26
-
Created Will Idea download the correct version of plugin that matched its version?
(Some) idea8 plugins will be incompatible with idea7. Does idea.executable 'knows' to download the latest plugin version that matches users version of idea? for example, if I update plugin for idea... -
Created Idea8: Deprecated BuildConfiguration.willBuildExploded()?
This method (BuildConfiguration.willBuildExploded()) is deprecated - what should we use instead? -
Created Idea8: getInstance() for ModuleComponent, huh?
Sorry if the question is unclear...In my plugin i have static method:public static Foo....ModuleComponent getInstance(Module m) { return ServiceManager.getService(m, Foo...ModuleComponent.class)... -
Created Idea8: ModuleType.JAVA
In previous version I was able to do something like:module.getModuleType().equals(ModuleType.JAVA)In Idea8, ModuleType.* does not exist. What is the prefered way to do the same in idea 8? -
Created Best way to create heavyweight popup?
I need heavyweight popup that should be accessable all the time - even when no project is open (something like Windows>Background Tasks). This popup should present some non-trivial jpanel.What is t... -
Created Can I use custom 'view' for my WelcomeAction?
Can I use my custom design (jpanel) for the welcome action? I do not want to have default icon + link + text style, I wanna my own.Can i do that and how? -
Created How to add gui tab in the some facet configuration?
I would like to extends facet configuration, but only for some facet types. How to add a tab in the facet configuration whem facet instance and type is known.I know how to add a GUI tab to module c... -
Created How to read data from WebFacetConfigurationImpl?
I have located a WebFacet instance. How to read its configuration?i.e. How to access WebFacetConfigurationImpl without reflection?i.e. how to get, for example, exploded folder? -
Created Why I get NoClassDefFoundError for WebFacet when I run my plugin?
I have VirtualFileAdapter that needs to do something with files, but only if managed by webfacet. I copied some code from WebUtil, and have this exception when I run the plugin:java.lang.NoClassDef... -
Created How to find Web context root?
I do have a Project instance, a (web) Module instance and its JavaeeModuleProperties. I still can't figure how to find web context root. Any ideas?