Extensibility Element Filter

Identifier:
org.eclipse.wst.wsdl.ui.extensibilityelementFilter

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

Description:
The Extensibility Element Filter extension point allows clients to register filters for Extensibility Elements in the WSDL Editor based on the Extensibility Element's namespace. These filters determine what is to be displayed in the WSDL Editor.

Configuration Markup:

<!ELEMENT extension (extensibilityElementFilter)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT extensibilityElementFilter EMPTY>

<!ATTLIST extensibilityElementFilter

namespace CDATA #REQUIRED

class     CDATA #REQUIRED>


Examples:
The following is an example of an Extensibility Element Filter contribution:

   <extension
         point="org.eclipse.wst.wsdl.ui.extensibilityElementFilter">
      <extensibilityElementFilter
            namespace="http://schemas.xmlsoap.org/wsdl/soap/"
            class="org.eclipse.wst.wsdl.ui.internal.filter.SoapExtensiblityElementFilter"/>
   </extension>


Copyright (c) 2000, 2005 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html