The Jadclipse plugin works great for me in Eclipse 3.0 M9
One thing is a little bit strange:
If I select a method in the outline view the correct method is shown in the Editor pane, but when i click into the Editor pane the outline view somehow refreshes and the cursor in the editor pane moves to the beginning of the file
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If this doesn't work for you please look into your eclipse/workspace/metadata/.log file, search for an error with the jadclipse plugin and post it here again
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The Jadclipse plugin works great for me in Eclipse 3.0 M9
One thing is a little bit strange:
If I select a method in the outline view the correct method is shown in the Editor pane, but when i click into the Editor pane the outline view somehow refreshes and the cursor in the editor pane moves to the beginning of the file
Yes, I get the exact same issue. It looks like it decompies the class again.
It works in Eclipse 3.0 M9? How? I changed the plugin.xml according to some other posts here, adding the line
<import plugin="org.eclipse.jface.text"/>
but that still didn't make it work in M8. Do I have to use M9 to use Jadclipse?
Here is my plugin.xml:
<?xml version="1.0" encoding="UTF-8"?>
<plugin
id="jadclipse"
name="jadclipse Plugin"
version="2.0.6"
provider-name="BOBAH"
class="jadclipse.JadclipsePlugin">
<runtime>
<library name="jadclipse.jar"/>
</runtime>
<requires>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.jdt.core"/>
<import plugin="org.eclipse.jdt.ui"/>
<import plugin="org.eclipse.jdt.debug.ui"/>
<import plugin="org.eclipse.jface.text"/>
</requires>
<extension
point="org.eclipse.ui.editors">
<editor
name="JadClipse Class File Viewer"
default="true"
icon="icons/jcu_obj.gif"
extensions="class"
contributorClass="jadclipse.JadclipseActionBarContributor"
class="jadclipse.JadclipseClassFileEditor"
id="jadclipse.JadclipseClassFileEditor">
</editor>
</extension>
<extension
point="org.eclipse.ui.editorActions">
<editorContribution
targetID="jadclipse.JadclipseClassFileEditor"
id="jadclipse.JadclipseClassFileEditor.BreakpointRulerActions">
<action
label="?"
class="jadclipse.JadclipseBreakpointRulerActionDelegate"
actionID="RulerDoubleClick"
id="jadclipse.ManageBreakpointRulerAction">
</action>
</editorContribution>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
name="JadClipse"
category="org.eclipse.jdt.ui.preferences.JavaBasePreferencePage"
class="jadclipse.ui.JadClipsePreferencePage"
id="jadclipse.ui.preferences.Main">
</page>
<page
name="Formatting"
category="org.eclipse.jdt.ui.preferences.JavaBasePreferencePage/jadclipse.ui.preferences.Main"
class="jadclipse.ui.JadClipsePreferencePageFormat"
id="jadclipse.ui.preferences.Formatting">
</page>
<page
name="Directives"
category="org.eclipse.jdt.ui.preferences.JavaBasePreferencePage/jadclipse.ui.preferences.Main"
class="jadclipse.ui.JadClipsePreferencePageDirect"
id="jadclipse.ui.preferences.Directives">
</page>
<page
name="Debug"
category="org.eclipse.jdt.ui.preferences.JavaBasePreferencePage/jadclipse.ui.preferences.Main"
class="jadclipse.ui.JadClipsePreferencePageDebug"
id="jadclipse.ui.preferences.Debug">
</page>
<page
name="Misc"
category="org.eclipse.jdt.ui.preferences.JavaBasePreferencePage/jadclipse.ui.preferences.Main"
class="jadclipse.ui.JadClipsePreferencePageMisc"
id="jadclipse.ui.preferences.Misc">
</page>
</extension>
</plugin>
If this doesn't work for you please look into your eclipse/workspace/metadata/.log file, search for an error with the jadclipse plugin and post it here again
The Outline problems are solved right now in the 3.2.3 Version --- Many thanks to the developers
you are doing a great job