Internal Editor Extensions

org.eclipse.wst.wsdl.ui.internalEditorExtensions

This extension point is internal and should not be used by any other plugins.

The Internal Editor Extension point is used to provide GUI objects, actions, context menu items, etc... for non WSDL Model Objects in the WSDL Editor.

<!ELEMENT extension (internalEditorExtension)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT internalEditorExtension EMPTY>

<!ATTLIST internalEditorExtension

class CDATA #REQUIRED>


The following is an example of an Internal Editor Extension contribution:
   

<extension point=

"org.eclipse.wst.wsdl.ui.internalEditorExtensions"

>

<internalEditorExtension class=

"org.eclipse.wst.wsdl.ui.internal.xsd.XSDExtension"

/>

</extension>

The supplied class must implement org.eclipse.wst.wsdl.ui.internal.extension.WSDLEditorExtension.