UI Port and Binding Content Generators

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

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

Description:
The UI Port and Binding Content Generators extension point allows clients to register UI (in the New WSDL File wizard) for their custom generators for Ports and Bindings.

Configuration Markup:

<!ELEMENT extension (contentGeneratorUI)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>

The UI Port and Binding Content Generators extension point allows clients to register ui (for the New WSDL File wizard) for their custom content generators for WSDL Ports and Bindings.



<!ELEMENT contentGeneratorUI EMPTY>

<!ATTLIST contentGeneratorUI

name                    CDATA #REQUIRED

namespace               CDATA #REQUIRED

portOptionsPageClass    CDATA #REQUIRED

bindingOptionsPageClass CDATA #REQUIRED

label                   CDATA #IMPLIED>


Examples:
The following is an example of a content generator ui contribution:

   <extension point = "org.eclipse.wst.wsdl.ui.contentGeneratorUI">
      <contentGeneratorUI
        name="SOAP"
        namespace="http://schemas.xmlsoap.org/wsdl/soap/"
        portOptionsPageClass="org.eclipse.wst.wsdl.ui.internal.contentgenerator.ui.AddressPortOptionsPage"
        bindingOptionsPageClass="org.eclipse.wst.wsdl.ui.internal.contentgenerator.ui.SoapBindingOptionsPage">
      </contentGeneratorUI>
   </extension>


Copyright (c) 2008 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