Skip to main content
summaryrefslogtreecommitdiffstats
blob: 79e8d909f8a1e9a926ac9b576e34082d236bf231 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Port and Binding Content Generators</title>
<style type="text/css">@import url("../../book.css");</style>
<style type="text/css">@import url("../../schema.css");</style>
</HEAD>
<BODY>
<H1 style="text-align:center">Port and Binding Content Generators</H1>
<p></p>
<h6 class="CaptionFigColumn SchemaHeader">Identifier: </h6>org.eclipse.wst.wsdl.contentGenerators<p></p>
<h6 class="CaptionFigColumn SchemaHeader">Since: </h6><b>This extension point is internal and should not be used by any other plugins.</b>
<p></p>

<h6 class="CaptionFigColumn SchemaHeader">Description: </h6>The Port and Binding Content Generators extension point allows clients to register custom generators for Ports and Bindings.<p></p>
<h6 class="CaptionFigColumn SchemaHeader">Configuration Markup:</h6>
<p></p>
<p class="code SchemaDtd">&lt;!ELEMENT <a name="e.extension">extension</a> (<a href="#e.contentGenerator">contentGenerator</a>)&gt;</p>
<p class="code SchemaDtd">&lt;!ATTLIST extension</p>
<p class="code SchemaDtdAttlist">point&nbsp;CDATA #REQUIRED<p class="code SchemaDtdAttlist">id&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class="code SchemaDtdAttlist">name&nbsp;&nbsp;CDATA #IMPLIED&gt;</p>
<p></p>
<p class="ConfigMarkupElementDesc">
The Port and Binding Content Generators extension point allows clients to register custom content generators for WSDL Ports and Bindings.</p>
<br>
<ul class="ConfigMarkupAttlistDesc">
<li><b>point</b> - a fully qualified identifier of the target extension point</li>
<li><b>id</b> - an optional identifier of the extension instance</li>
<li><b>name</b> - an optional name of the extension instance</li>
</ul>
<br><p class="code SchemaDtd">&lt;!ELEMENT <a name="e.contentGenerator">contentGenerator</a> EMPTY&gt;</p>
<p class="code SchemaDtd">&lt;!ATTLIST contentGenerator</p>
<p class="code SchemaDtdAttlist">name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED<p class="code SchemaDtdAttlist">namespace&nbsp;CDATA #REQUIRED<p class="code SchemaDtdAttlist">class&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED&gt;</p>
<p></p>
<ul class="ConfigMarkupAttlistDesc">
<li><b>name</b> - Name used for this particular extension point instance.</li>
<li><b>namespace</b> - The namespace this extension point instance applies to.</li>
<li><b>class</b> - The class that implements <code>org.eclipse.wst.wsdl.internal.generator.ContentGenerator</code>.</li>
</ul>
<br><h6 class="CaptionFigColumn SchemaHeader">Examples: </h6>The following is an example of a content generator contribution:
<pre class="Example"><span class="code SchemaTag">
   &lt;extension
         point=</span><span class="code SchemaCstring">&quot;org.eclipse.wst.wsdl.contentGenerators&quot;</span><span class="code SchemaTag">&gt;
      &lt;contentGenerator
            name=</span><span class="code SchemaCstring">&quot;SOAP&quot;</span><span class="code SchemaTag">
            namespace=</span><span class="code SchemaCstring">&quot;http://schemas.xmlsoap.org/wsdl/soap/&quot;</span><span class="code SchemaTag">
            class=</span><span class="code SchemaCstring">&quot;org.eclipse.wst.wsdl.binding.soap.internal.generator.SOAPContentGenerator&quot;</span><span class="code SchemaTag">/&gt;
   &lt;/extension&gt;
</span></pre>
<p></p>

<br>
<p class="note SchemaCopyright">
Copyright (c) 2000, 2005 IBM Corporation and others.<br>
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 <a
href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>

</p>
</BODY>
</HTML>

Back to the top