free UML sequence diagram reverse engineering eclipse plugin working out of the box – does such a thing exist? [closed]

The other day, I discovered a tool from the University of Victoria called Diver: Dynamic Interactive Views For Reverse Engineering. You can either find a method and create a static sequence diagram starting with that method or you can run an application in a trace mode to capture the sequence diagram for a particular execution … Read more

Correct way to remove plugin from Eclipse

Using the menus, open Help | About Eclipse IDE | Installation details (in newer versions), Help | Installation Details (in older versions), or Help | About Eclipse | Installation details (in even older versions). In the “Installed software” tab click on the software that you wish to uninstall, then click the “Uninstall…” button below. If … Read more

Where did the Apache Derby Eclipse plug-in go?

Apache Derby db-derby-10.9.1.0-src / Eclipse 4.2.1 (Juno) / Java 7 Some kind of fix. Needs more research but this will work. References: db-derby-10.9.1.0-src/BUILDING.html db-derby-10.8.1.2-src/plugins/eclipse/Readme.txt Download the Apache Derby source zip. Extract the zip. Change to the source directory. db-derby-10.9.1.0-src Perform the following ant targets. ant -quiet clobber ant -quiet buildsource ant -quiet buildjars Build the … Read more

How to provide a custom component in the existing Web page Editor Palette

Finally, I found the solution of the problem. For adding new categories in the palette, we need to use pagedesignerextension in plugin.xml as following – <extension point=”org.eclipse.jst.pagedesigner.pageDesignerExtension”> <paletteFactory class=”com.comp.myeditor.palette.CustomEditorPaletteFactory”> </paletteFactory> </extension> Where CustomEditorPaletteFactory will be extending AbstractPaletteFactory. Here in createPaletteRoot(), we can add our category. public PaletteRoot createPaletteRoot(IEditorInput editorInput){ PaletteRoot paletteRoot = new PaletteRoot(); paletteRoot.add(createStandardComponents()); … Read more

Using preprocessor directives in BlackBerry JDE plugin for eclipse?

Within the eclipse config file (%ECLIPSE_HOME%\configuration\config.ini) make sure the following line exists. osgi.framework.extensions=net.rim.eide.preprocessing.hook With the current BlackBerry plugin (1.0.0.67) config line is added for you. I’m not sure about older versions of the plugin. Also, checkout this Stack Overflow question for more information on the BlackBerry preprocessor. Preprocessor directives supported by the RIM compiler