plugin-development

Javascript Plugin Development , Extending Libraries

i got two javascript objects api and myApi : var api = {}; api.foo = function(){ ... }; api.foo2 = function(){ ... }; var myApi = {}; myApi.foo = function(){ ...}; myApi.myFoo = function(){ ...}; myApi.myFoo2 = function(){ ...}; i want to add all myApi.* functions to api object without overriding api.foo. Indeed, i want learn how to...

How do I get the file path of the open workspace for developing plugins in eclipse

This is a question specifically about plugin development for the Eclipse platform: I need to implement persistence without hardcoding the name of the datastore I am using. I want to be able to have multiple instances of eclipse with my plugin running at the same time with independent datastores. One way of doing this would be to use t...