Property Descriptor Provider

org.eclipse.wst.wsdl.ui.propertyDescriptorProvider

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

The Property Descriptor Provider extension point allows clients to register their own custom IPropertyDescriptor in the WSDL Editor based on namespace.

<!ELEMENT extension (propertyDescriptorProvider)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT propertyDescriptorProvider EMPTY>

<!ATTLIST propertyDescriptorProvider

namespace CDATA #IMPLIED

class     CDATA #IMPLIED>


The following is an example of an contribution:
   

<extension point=

"org.eclipse.wst.wsdl.ui.propertyDescriptorProvider"

>

<propertyDescriptorProvider namespace=

"http://schemas.xmlsoap.org/wsdl/soap/"

class=

"org.eclipse.wst.wsdl.ui.internal.example.ExamplePropertyDescriptor"

/>

</extension>

The supplied class must implement org.eclipse.ui.views.properties.IPropertyDescriptor.