Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [wtp-dev] "Show In" action and XMLMultiPageEditorPart editor

Lars,
It does show up and work fine, at least for the XML Editor.  If you're 
reusing the class as you recently blogged about, you'll have to redeclare 
any action set part associations for your editor's new ID.  These are the 
relevant plugin.xml sections using the generic XML Editor's part ID:

<!-- Editor actionsets -->
<extension point="org.eclipse.ui.actionSetPartAssociations">
        <actionSetPartAssociation targetID=
"org.eclipse.ui.edit.text.actionSet.annotationNavigation">
                <part id=
"org.eclipse.wst.xml.ui.internal.tabletree.XMLMultiPageEditorPart"/>
        </actionSetPartAssociation>
        <actionSetPartAssociation targetID=
"org.eclipse.ui.NavigateActionSet">
                <part id=
"org.eclipse.wst.xml.ui.internal.tabletree.XMLMultiPageEditorPart"/>
        </actionSetPartAssociation>
</extension>

---
Nitin Dahyabhai
Structured Source Editing



Back to the top