Isuru Wijesinghe
- Total activity 39
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 16
-
Created Interacting with other plugins
When developing a plugin I know its possible to define other plugins which my plugin depends on. How ever its there a way to trigger those plugin actions from my plugin code.For examplesI want to c... -
Created Adding DOM Elements to XML file
My objective is to programatically add dom elements to a web.xml file, like servlets, servlet-mappings and filters.First using intellij idea dev-kit plugin I have generated to dom model for web.xml... -
Created NewGroup - Adding items based on the context
Refer to the two screen shots above. GUI Form on new item pop up will only appear if only the directory currently selected is the source directory.I have a similar requirement that items I add to n... -
Created Programatically finding the plugin installed directory
HiI have my plugin bundle as a zip file. And once I install it I can find the extracted files inside/home/isuru/.IdeaIC14/config/plugins/ctap-idea-pluginisuru@isuru-XPS13-9333:~/.IdeaIC14/config/pl... -
Created Project templates - attributes for place holders
Am working on adding achive based project templates to my idea plugin. Currently this is the content of my project-template.xml inside .idea directory of my project template.-----------------------... -
Created Compile project source - Program Runner
My idea plugin, am adding run/debug configurations. <extensions defaultExtensionNs="com.intellij"> <configurationType implementation="<my-impl>" /> <programRunner id="Run" implementation=<my... -
Created File open view - Extension point
Attach file is from android plugin, which provide xml file to be rendered using interpreter or text file editor.I have a similar requirement for code generation feature I'm going to add for IDEA pl... -
Created Adding multiple project templates
I have used the project template extension point in following way. <projectTemplate projectType="CTAP Application" templatePath="resources/CTAP_SMS_Service_Application.zip" category="true"/>This ad... -
Created Create project template extensions using "user defined" templates
I'm creating a plugin which will introduce new project templates to new project creation wizards. As I have went though the idea community edition source code, I found a perfect example for project... -
Created Adding third party jar to the plugin project
I creating a plugin which use the projectTemplate extension point. How ever my project template use third party dependencies such as google-guava, jetty etc... How to include them in the plugin pro...