Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Guy Mahieu
Total activity
32
Last activity
February 27, 2025 13:13
Member since
August 16, 2007 13:12
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
12
Activity overview
Posts (9)
Comments (10)
Sort by recent activity
Recent activity
Votes
Created
September 20, 2008 09:31
I've just found the cause; I had two jars in my classpath that contained the javax.xml.* classes.Removing the extra one solved my problem.
Community
IntelliJ IDEA Open API and Plugin Development
Problem parsing xml from plugin environment
0 votes
Created
November 11, 2008 09:18
Hi Igor,I've solved it by using module.getModuleType().equals(com.intellij.openapi.module.StdModuleTypes.JAVA).Don't know if this is the 'preferred' way, but it seems to do the trick.Cheers,Guy
Community
IntelliJ IDEA Open API and Plugin Development
Idea8: ModuleType.JAVA
0 votes
Created
October 30, 2008 18:39
I was also wondering if it was possible to add actions to a ConsoleView inside a toolwindow so they have the same l&f as all the IntelliJ toolwindow toolbars. I tried using a custom swing component...
Community
IntelliJ IDEA Open API and Plugin Development
How to use Message ToolWindow
0 votes
Created
October 31, 2008 07:07
That's at least part of what I wanted to know :)Thanks a bunch!Edited by: Guy Mahieu on Oct 31, 2008 8:07 AM
Community
IntelliJ IDEA Open API and Plugin Development
How to use Message ToolWindow
0 votes
Created
January 18, 2009 08:51
Hi Yann,Thanks for the reply!I don't think calling setAuthenticator() will help much though, as it is the first thing that the prepareURL() method on HttpConfigurable does.Cheers,Guy
Community
IntelliJ IDEA Open API and Plugin Development
Using the IntelliJ proxy settings from a plugin
0 votes
Created
November 22, 2010 07:12
Thanks for your reply!The problem is than in my PersistentStateComponent I have a String property that configures a file path. This is now stored absolute because I take it directly from user input...
Community
IntelliJ IDEA Open API and Plugin Development
Working with $PROJECT_DIR$ in plugin configuration options
0 votes
Created
November 23, 2010 09:44
This sounds exactly like what I need, I'll give it a try, thanks!!Cheers,Guy
Community
IntelliJ IDEA Open API and Plugin Development
Working with $PROJECT_DIR$ in plugin configuration options
0 votes
Created
November 19, 2010 18:12
To answer my own question:I used to add the dependencies using the URL like: libraryModel.addRoot(externalDependency.getUrlForLibrary(intellijModule.getModule()), externalDependency.getType(...
Community
IntelliJ IDEA Open API and Plugin Development
Get path relative to $MODULE_DIR$
0 votes
Created
November 19, 2008 16:24
That was exactly what I needed!Merci beaucoup! ;)
Community
IntelliJ IDEA Open API and Plugin Development
Opening the Intellij Settings and Project structure dialogs from code
0 votes
Created
November 19, 2008 16:38
This works perfectly for the project level settings.Sadly my facet configuration does not implement Configurable and I also want to be able to open that through code. Does anyone know of a way to o...
Community
IntelliJ IDEA Open API and Plugin Development
Opening the Intellij Settings and Project structure dialogs from code
0 votes