Java Doc for DescriptionImpl.java in  » ESB » open-esb » com » sun » jbi » wsdl2 » impl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ESB » open esb » com.sun.jbi.wsdl2.impl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.jbi.wsdl2.impl.ExtensibleDocumentedComponent
      com.sun.jbi.wsdl2.impl.Description
         com.sun.jbi.wsdl2.impl.DescriptionImpl

DescriptionImpl
final class DescriptionImpl extends Description (Code)
Implementation of WSDL 2.0 Description container.
author:
   Sun Microsystems, Inc.

Inner Class :static class Factory



Method Summary
public  com.sun.jbi.wsdl2.BindingaddNewBinding(String name)
     Create a new binding component, appended to this definition's binding list.
Parameters:
  name - Name of binding to create.
public  com.sun.jbi.wsdl2.ImportaddNewImport()
     Create a new import component, appended to this definition's import list.
public  com.sun.jbi.wsdl2.IncludeaddNewInclude()
     Create a new include, appended to this definition's include list.
public  com.sun.jbi.wsdl2.InterfaceaddNewInterface(String name)
     Create a new interface component, appended to this definition's interface list.
Parameters:
  name - Name of interface to create.
public  com.sun.jbi.wsdl2.ServiceaddNewService(String name)
     Create a new service component, appended to this definition's service list.
Parameters:
  name - Name of service to create.
public  voidappendBinding(com.sun.jbi.wsdl2.Binding theBinding)
     Append an item to bindings for this component..
public  voidappendImport(com.sun.jbi.wsdl2.Import theImport)
     Append an item to definitions imported into this container.
public  voidappendInclude(com.sun.jbi.wsdl2.Include theInclude)
     Append an item to definitions included in this container.
public  voidappendInterface(com.sun.jbi.wsdl2.Interface theInterface)
     Append an item to interfaces for this component.
public  voidappendService(com.sun.jbi.wsdl2.Service theService)
     Append an item to services for this component..
public  voidappendType(com.sun.jbi.wsdl2.Types theType)
     Append an item to types (in schema or whatever).
public  com.sun.jbi.wsdl2.BindingfindBinding(QName name)
     Find named binding in this definition or the imported/included bindings.

This implementation assumes that the import/include structure does not introduce a circular search path.
Parameters:
  name - Name of binding to find.

protected  com.sun.jbi.wsdl2.BindingfindImportedBinding(QName name)
     Find binding with given qualified name in the bindings imported in this definitions component.
protected  com.sun.jbi.wsdl2.InterfacefindImportedInterface(QName name)
     Find interface with given qualified name in the interfaces imported in this definitions component.
protected  com.sun.jbi.wsdl2.ServicefindImportedService(QName name)
     Find an interface with given qualified name in the interfaces imported in this definitions component.
protected  com.sun.jbi.wsdl2.BindingfindIncludedBinding(QName name)
     Find binding with given qualified name in the bindings included in this defintions component.
protected  com.sun.jbi.wsdl2.InterfacefindIncludedInterface(QName name)
     Find interface with given qualified name in the interfaces included in this defintions component.
protected  com.sun.jbi.wsdl2.ServicefindIncludedService(QName name)
     Find interface with given qualified name in the interfaces included in this defintions component.
public  com.sun.jbi.wsdl2.InterfacefindInterface(QName name)
     Find named interface in this definition or the imported/included interfaces.
Parameters:
  name - Name of interface to find.
protected  com.sun.jbi.wsdl2.BindingfindLocalBinding(String localName)
     Find binding with given local name in the bindings from this definition only.
Parameters:
  localName - Local name of the binding to search for.
protected  com.sun.jbi.wsdl2.InterfacefindLocalInterface(String localName)
     Find interface with given local name in the interfaces from this definition only.
Parameters:
  localName - Local name of the interface to search for.
protected  com.sun.jbi.wsdl2.ServicefindLocalService(String localName)
     Find interface with given local name in the interfaces from this definition only.
Parameters:
  localName - Local name of the interface to search for.
public  com.sun.jbi.wsdl2.ServicefindService(QName name)
     Find named service in this definition or the imported/included services.
Parameters:
  name - Name of service to find.
static synchronized  java.util.MapgetAttributeNameMap()
     Worker class-method for DescriptionImpl.getWsdlAttributeNameMap() .
public  com.sun.jbi.wsdl2.BindinggetBinding(int index)
     Get bindings for this component, by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Bindings for this component.
public  MapgetBindingFaultMap()
     Get the BindingFaultType to BindingFaultImpl object map for this definitions component.
public  MapgetBindingFaultReferenceMap()
     Get the BindingFaultType to BindingFaultReferenceImpl map for this definitions component.
public  MapgetBindingMap()
     Get the BindingType to BindingImpl object map for this definitions component.
public  MapgetBindingMessageReferenceMap()
     Get the BindingOperationMessageType to BindingMessageReferenceImpl map for this definitions component.
public  MapgetBindingOperationFaultMap()
     Get the BindingOperationFault to BindingOperationFaultImpl map for this definitions component.
public  MapgetBindingOperationMap()
     Get the BindingOperationType to BindingOperationImpl map for this definitions component.
public  intgetBindingsLength()
     Get the number of Binding items in bindings.
protected  DescriptionImplgetContainer()
     Get the container for this component.
 DescriptionDocumentgetDocBean()
     Get the document bean for this component.
public  StringgetDocumentBaseUri()
     Get the base document URI for this definitions component.
public  MapgetDocumentMap()
     Get the DocumentationType to DocumentImpl map for this definitions component.
public  MapgetEndpointMap()
     Get the EndpointType to EndpointImpl map for this definitions component.
public  com.sun.jbi.wsdl2.ImportgetImport(int index)
     Get definitions imported into this container by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Description imported into this container.
public  MapgetImportMap()
     Get the ImportType to ImportImpl map for this definitions component.
public  intgetImportsLength()
     Get the number of Import items in imports.
public  com.sun.jbi.wsdl2.IncludegetInclude(int index)
     Get definitions included in this container, by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Description included in this container.
public  MapgetIncludeMap()
     Get the IncludeType to IncludeImpl map for this definitions component.
public  intgetIncludesLength()
     Get the number of Include items in includes.
public  com.sun.jbi.wsdl2.InterfacegetInterface(int index)
     Get interfaces for this component, by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Interfaces for this component.
public  MapgetInterfaceFaultMap()
     Get the InterfaceFaultType to InterfaceFaultImpl object map for this definitions component.
public  MapgetInterfaceMap()
     Get the InterfaceType to InterfaceImpl map for this component.
public  MapgetInterfaceOperationMap()
     Get the InterfaceOperationType to InterfaceOperationImpl map for this component.
public  intgetInterfacesLength()
     Get the number of Interface items in interfaces.
public  MapgetMessageFaultReferenceMap()
     Get the MessageRefFaultType to MessageFaultReferenceImpl map for this component.
public  MapgetMessageReferenceMap()
     Get the MessageRefType to MessageReferenceImpl map for this component.
public  com.sun.jbi.wsdl2.ServicegetService(int index)
     Get services for this component, by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Services for this component.
public  MapgetServiceMap()
     Get the ServiceType to ServiceImpl map for this component.
public  intgetServicesLength()
     Get the number of Service items in services.
public  StringgetTargetNamespace()
     Get namespace for components in this container.
public  com.sun.jbi.wsdl2.TypesgetType(int index)
     Get types (in schema or whatever) by indexed position.
public  intgetTypesLength()
     Get the number of Types items in types.
public  MapgetTypesMap()
     Get the TypesType to TypesImpl map for this component.
public  java.util.MapgetWsdlAttributeNameMap()
     Get map of WSDL-defined attribute QNames for this component, indexed by canonical QName string (see javax.xml.namespace.QName.toString .
public  com.sun.jbi.wsdl2.TypesnewTypes()
     Create a new types component, replacing the existing types component of this definition, if necessary.
public  com.sun.jbi.wsdl2.BindingremoveBinding(int index)
     Remove bindings for this component, by index position.
public  com.sun.jbi.wsdl2.ImportremoveImport(int index)
     Remove definitions imported into this container, by index position.
public  com.sun.jbi.wsdl2.IncluderemoveInclude(int index)
     Remove definitions included in this container, by index position.
public  com.sun.jbi.wsdl2.InterfaceremoveInterface(int index)
     Remove interfaces for this component, by index position.
public  com.sun.jbi.wsdl2.ServiceremoveService(int index)
     Remove services for this component, by index position.
public  com.sun.jbi.wsdl2.TypesremoveType(int index)
     Remove types (in schema or whatever) by index position.
public  voidsetBinding(int index, com.sun.jbi.wsdl2.Binding theBinding)
     Set bindings for this component, by indexed position.
public  voidsetDocumentBaseUri(String theDocumentBaseUri)
     Set the base document URI for this wsdl:definitions component.
public  voidsetImport(int index, com.sun.jbi.wsdl2.Import theImport)
     Set definitions imported into this container, by indexed position.
public  voidsetInclude(int index, com.sun.jbi.wsdl2.Include theInclude)
     Set definitions included in this container, by indexed position.
public  voidsetInterface(int index, com.sun.jbi.wsdl2.Interface theInterface)
     Set interfaces for this component, by indexed position.
public  voidsetService(int index, com.sun.jbi.wsdl2.Service theService)
     Set services for this component, by indexed position.
public  voidsetTargetNamespace(String theTargetNamespace)
     Set namespace for components in this container.
public  voidsetType(int index, com.sun.jbi.wsdl2.Types theType)
     Set types (in schema or whatever) by indexed position.
public  org.w3c.dom.DocumenttoXmlDocument()
     Return this document as a DOM document.
public  StringtoXmlString()
     Return this WSDL definition as an XML string.



Method Detail
addNewBinding
public com.sun.jbi.wsdl2.Binding addNewBinding(String name)(Code)
Create a new binding component, appended to this definition's binding list.
Parameters:
  name - Name of binding to create. Newly created binding, appended to the bindings list.



addNewImport
public com.sun.jbi.wsdl2.Import addNewImport()(Code)
Create a new import component, appended to this definition's import list. Newly created import, appended to the imports list.



addNewInclude
public com.sun.jbi.wsdl2.Include addNewInclude()(Code)
Create a new include, appended to this definition's include list. Newly created include, appended to the includes list.



addNewInterface
public com.sun.jbi.wsdl2.Interface addNewInterface(String name)(Code)
Create a new interface component, appended to this definition's interface list.
Parameters:
  name - Name of interface to create. Newly created interface, appended to interfaces list.



addNewService
public com.sun.jbi.wsdl2.Service addNewService(String name)(Code)
Create a new service component, appended to this definition's service list.
Parameters:
  name - Name of service to create. Newly created service, appended to the services list.



appendBinding
public void appendBinding(com.sun.jbi.wsdl2.Binding theBinding)(Code)
Append an item to bindings for this component..
Parameters:
  theBinding - Item to append to bindings



appendImport
public void appendImport(com.sun.jbi.wsdl2.Import theImport)(Code)
Append an item to definitions imported into this container.
Parameters:
  theImport - Item to append to imports



appendInclude
public void appendInclude(com.sun.jbi.wsdl2.Include theInclude)(Code)
Append an item to definitions included in this container.
Parameters:
  theInclude - Item to append to includes



appendInterface
public void appendInterface(com.sun.jbi.wsdl2.Interface theInterface)(Code)
Append an item to interfaces for this component.
Parameters:
  theInterface - Item to append to interfaces



appendService
public void appendService(com.sun.jbi.wsdl2.Service theService)(Code)
Append an item to services for this component..
Parameters:
  theService - Item to append to services



appendType
public void appendType(com.sun.jbi.wsdl2.Types theType)(Code)
Append an item to types (in schema or whatever).
Parameters:
  theType - Item to append to types



findBinding
public com.sun.jbi.wsdl2.Binding findBinding(QName name)(Code)
Find named binding in this definition or the imported/included bindings.

This implementation assumes that the import/include structure does not introduce a circular search path.
Parameters:
  name - Name of binding to find. Named Binding; null if none found.




findImportedBinding
protected com.sun.jbi.wsdl2.Binding findImportedBinding(QName name)(Code)
Find binding with given qualified name in the bindings imported in this definitions component.
Parameters:
  name - Qualified name of binding to look for Binding with given qualified name; null if not found



findImportedInterface
protected com.sun.jbi.wsdl2.Interface findImportedInterface(QName name)(Code)
Find interface with given qualified name in the interfaces imported in this definitions component.
Parameters:
  name - Qualified name of interface to look for Interface with given qualified name; null if not found



findImportedService
protected com.sun.jbi.wsdl2.Service findImportedService(QName name)(Code)
Find an interface with given qualified name in the interfaces imported in this definitions component.
Parameters:
  name - Qualified name of interface to look for Service with given qualified name; null if not found



findIncludedBinding
protected com.sun.jbi.wsdl2.Binding findIncludedBinding(QName name)(Code)
Find binding with given qualified name in the bindings included in this defintions component.
Parameters:
  name - Qualified name of binding to look for Binding with given qualified name; null if not found



findIncludedInterface
protected com.sun.jbi.wsdl2.Interface findIncludedInterface(QName name)(Code)
Find interface with given qualified name in the interfaces included in this defintions component.
Parameters:
  name - Qualified name of interface to look for Interface with given qualified name; null if not found



findIncludedService
protected com.sun.jbi.wsdl2.Service findIncludedService(QName name)(Code)
Find interface with given qualified name in the interfaces included in this defintions component.
Parameters:
  name - Qualified name of interface to look for Service with given qualified name; null if not found



findInterface
public com.sun.jbi.wsdl2.Interface findInterface(QName name)(Code)
Find named interface in this definition or the imported/included interfaces.
Parameters:
  name - Name of interface to find. Named Interface; null if none found.



findLocalBinding
protected com.sun.jbi.wsdl2.Binding findLocalBinding(String localName)(Code)
Find binding with given local name in the bindings from this definition only.
Parameters:
  localName - Local name of the binding to search for. Binding found matching the local name given; null if not found.



findLocalInterface
protected com.sun.jbi.wsdl2.Interface findLocalInterface(String localName)(Code)
Find interface with given local name in the interfaces from this definition only.
Parameters:
  localName - Local name of the interface to search for. Interface found matching the local name given; null if not found.



findLocalService
protected com.sun.jbi.wsdl2.Service findLocalService(String localName)(Code)
Find interface with given local name in the interfaces from this definition only.
Parameters:
  localName - Local name of the interface to search for. Service found matching the local name given; null if not found.



findService
public com.sun.jbi.wsdl2.Service findService(QName name)(Code)
Find named service in this definition or the imported/included services.
Parameters:
  name - Name of service to find. Named Service; null if none found.



getAttributeNameMap
static synchronized java.util.Map getAttributeNameMap()(Code)
Worker class-method for DescriptionImpl.getWsdlAttributeNameMap() . Map of WSDL-defined attribute QNames for this component, indexed by QName.toString()



getBinding
public com.sun.jbi.wsdl2.Binding getBinding(int index)(Code)
Get bindings for this component, by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Bindings for this component. at given index position.



getBindingFaultMap
public Map getBindingFaultMap()(Code)
Get the BindingFaultType to BindingFaultImpl object map for this definitions component. The binding fault map for this definition.



getBindingFaultReferenceMap
public Map getBindingFaultReferenceMap()(Code)
Get the BindingFaultType to BindingFaultReferenceImpl map for this definitions component. The Binding Fault Reference map for this definition.



getBindingMap
public Map getBindingMap()(Code)
Get the BindingType to BindingImpl object map for this definitions component. The binding map for this definition.



getBindingMessageReferenceMap
public Map getBindingMessageReferenceMap()(Code)
Get the BindingOperationMessageType to BindingMessageReferenceImpl map for this definitions component. The Binding Operation Message Type map for this definition.



getBindingOperationFaultMap
public Map getBindingOperationFaultMap()(Code)
Get the BindingOperationFault to BindingOperationFaultImpl map for this definitions component. The Binding Operation Fault map for this definition.



getBindingOperationMap
public Map getBindingOperationMap()(Code)
Get the BindingOperationType to BindingOperationImpl map for this definitions component. The Binding Operation map for this component.



getBindingsLength
public int getBindingsLength()(Code)
Get the number of Binding items in bindings. The number of Binding items in bindings



getContainer
protected DescriptionImpl getContainer()(Code)
Get the container for this component. The component for this component



getDocBean
DescriptionDocument getDocBean()(Code)
Get the document bean for this component. The document bean for this component.



getDocumentBaseUri
public String getDocumentBaseUri()(Code)
Get the base document URI for this definitions component. The base URI for the document this definitions component is associatedwith.



getDocumentMap
public Map getDocumentMap()(Code)
Get the DocumentationType to DocumentImpl map for this definitions component. The Document map for this component.



getEndpointMap
public Map getEndpointMap()(Code)
Get the EndpointType to EndpointImpl map for this definitions component. The Endpoint map for this component.



getImport
public com.sun.jbi.wsdl2.Import getImport(int index)(Code)
Get definitions imported into this container by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Description imported into this container. at given index position.



getImportMap
public Map getImportMap()(Code)
Get the ImportType to ImportImpl map for this definitions component. The Import map for this component.



getImportsLength
public int getImportsLength()(Code)
Get the number of Import items in imports. The number of Import items in imports



getInclude
public com.sun.jbi.wsdl2.Include getInclude(int index)(Code)
Get definitions included in this container, by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Description included in this container. at given index position.



getIncludeMap
public Map getIncludeMap()(Code)
Get the IncludeType to IncludeImpl map for this definitions component. The Include map for this component.



getIncludesLength
public int getIncludesLength()(Code)
Get the number of Include items in includes. The number of Include items in includes



getInterface
public com.sun.jbi.wsdl2.Interface getInterface(int index)(Code)
Get interfaces for this component, by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Interfaces for this component. at given index position.



getInterfaceFaultMap
public Map getInterfaceFaultMap()(Code)
Get the InterfaceFaultType to InterfaceFaultImpl object map for this definitions component. The interface fault map for this definition.



getInterfaceMap
public Map getInterfaceMap()(Code)
Get the InterfaceType to InterfaceImpl map for this component. The Interface map for this component.



getInterfaceOperationMap
public Map getInterfaceOperationMap()(Code)
Get the InterfaceOperationType to InterfaceOperationImpl map for this component. The Interface Operation map for this component.



getInterfacesLength
public int getInterfacesLength()(Code)
Get the number of Interface items in interfaces. The number of Interface items in interfaces



getMessageFaultReferenceMap
public Map getMessageFaultReferenceMap()(Code)
Get the MessageRefFaultType to MessageFaultReferenceImpl map for this component. The Message Fault Reference map for this compoent.



getMessageReferenceMap
public Map getMessageReferenceMap()(Code)
Get the MessageRefType to MessageReferenceImpl map for this component. The Message Reference map for this component.



getService
public com.sun.jbi.wsdl2.Service getService(int index)(Code)
Get services for this component, by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Services for this component. at given index position.



getServiceMap
public Map getServiceMap()(Code)
Get the ServiceType to ServiceImpl map for this component. The Service map for this component.



getServicesLength
public int getServicesLength()(Code)
Get the number of Service items in services. The number of Service items in services



getTargetNamespace
public String getTargetNamespace()(Code)
Get namespace for components in this container. Namespace for components in this container.



getType
public com.sun.jbi.wsdl2.Types getType(int index)(Code)
Get types (in schema or whatever) by indexed position.
Parameters:
  index - Indexed position value 0..length-1 Types (in schema or whatever) at given indexposition.



getTypesLength
public int getTypesLength()(Code)
Get the number of Types items in types. The number of Types items in types



getTypesMap
public Map getTypesMap()(Code)
Get the TypesType to TypesImpl map for this component. The Types map for this component.



getWsdlAttributeNameMap
public java.util.Map getWsdlAttributeNameMap()(Code)
Get map of WSDL-defined attribute QNames for this component, indexed by canonical QName string (see javax.xml.namespace.QName.toString . Map of WSDL-defined attribute QNames for this component, indexed by QName.toString()



newTypes
public com.sun.jbi.wsdl2.Types newTypes()(Code)
Create a new types component, replacing the existing types component of this definition, if necessary. Newly created Types component.



removeBinding
public com.sun.jbi.wsdl2.Binding removeBinding(int index)(Code)
Remove bindings for this component, by index position.
Parameters:
  index - The index position of the binding to remove The Binding removed, if any.



removeImport
public com.sun.jbi.wsdl2.Import removeImport(int index)(Code)
Remove definitions imported into this container, by index position.
Parameters:
  index - The index position of the import to remove The Import removed, if any.



removeInclude
public com.sun.jbi.wsdl2.Include removeInclude(int index)(Code)
Remove definitions included in this container, by index position.
Parameters:
  index - The index position of the include to remove The Include removed, if any.



removeInterface
public com.sun.jbi.wsdl2.Interface removeInterface(int index)(Code)
Remove interfaces for this component, by index position.
Parameters:
  index - The index position of the interface to remove The Interface removed, if any.



removeService
public com.sun.jbi.wsdl2.Service removeService(int index)(Code)
Remove services for this component, by index position.
Parameters:
  index - The index position of the service to remove The Service removed, if any.



removeType
public com.sun.jbi.wsdl2.Types removeType(int index)(Code)
Remove types (in schema or whatever) by index position.
Parameters:
  index - The index position of the type to remove The Types removed, if any.



setBinding
public void setBinding(int index, com.sun.jbi.wsdl2.Binding theBinding)(Code)
Set bindings for this component, by indexed position.
Parameters:
  index - Indexed position value (0..length-1) of the item to set
Parameters:
  theBinding - Item to add at position index.



setDocumentBaseUri
public void setDocumentBaseUri(String theDocumentBaseUri)(Code)
Set the base document URI for this wsdl:definitions component.
Parameters:
  theDocumentBaseUri - The base document URI for this component



setImport
public void setImport(int index, com.sun.jbi.wsdl2.Import theImport)(Code)
Set definitions imported into this container, by indexed position.
Parameters:
  index - Indexed position value (0..length-1) of the item to set
Parameters:
  theImport - Item to add at position index.



setInclude
public void setInclude(int index, com.sun.jbi.wsdl2.Include theInclude)(Code)
Set definitions included in this container, by indexed position.
Parameters:
  index - Indexed position value (0..length-1) of the item to set
Parameters:
  theInclude - Item to add at position index.



setInterface
public void setInterface(int index, com.sun.jbi.wsdl2.Interface theInterface)(Code)
Set interfaces for this component, by indexed position.
Parameters:
  index - Indexed position value (0..length-1) of the item to set
Parameters:
  theInterface - Item to add at position index.



setService
public void setService(int index, com.sun.jbi.wsdl2.Service theService)(Code)
Set services for this component, by indexed position.
Parameters:
  index - Indexed position value (0..length-1) of the item to set
Parameters:
  theService - Item to add at position index.



setTargetNamespace
public void setTargetNamespace(String theTargetNamespace)(Code)
Set namespace for components in this container.
Parameters:
  theTargetNamespace - Namespace for components in this container.



setType
public void setType(int index, com.sun.jbi.wsdl2.Types theType)(Code)
Set types (in schema or whatever) by indexed position.
Parameters:
  index - Indexed position value (0..length-1) of the item to set
Parameters:
  theType - Item to add at position index.



toXmlDocument
public org.w3c.dom.Document toXmlDocument()(Code)
Return this document as a DOM document. This definition, as a DOM document.



toXmlString
public String toXmlString()(Code)
Return this WSDL definition as an XML string. This definition, serialized as an XML string.



Methods inherited from com.sun.jbi.wsdl2.impl.Description
abstract public com.sun.jbi.wsdl2.Binding addNewBinding(String name)(Code)(Java Doc)
abstract public com.sun.jbi.wsdl2.Import addNewImport()(Code)(Java Doc)
abstract public com.sun.jbi.wsdl2.Include addNewInclude()(Code)(Java Doc)
abstract public com.sun.jbi.wsdl2.Interface addNewInterface(String name)(Code)(Java Doc)
abstract public com.sun.jbi.wsdl2.Service addNewService(String name)(Code)(Java Doc)
abstract public com.sun.jbi.wsdl2.Binding findBinding(QName name)(Code)(Java Doc)
abstract public com.sun.jbi.wsdl2.Interface findInterface(QName name)(Code)(Java Doc)
abstract public com.sun.jbi.wsdl2.Service findService(QName name)(Code)(Java Doc)
final protected DescriptionType getBean()(Code)(Java Doc)
abstract public com.sun.jbi.wsdl2.Types newTypes()(Code)(Java Doc)
abstract public org.w3c.dom.Document toXmlDocument()(Code)(Java Doc)
abstract public String toXmlString()(Code)(Java Doc)

Fields inherited from com.sun.jbi.wsdl2.impl.ExtensibleDocumentedComponent
protected XmlObject mXmlObject(Code)(Java Doc)

Methods inherited from com.sun.jbi.wsdl2.impl.ExtensibleDocumentedComponent
abstract protected DescriptionImpl getContainer()(Code)(Java Doc)
public com.sun.jbi.wsdl2.Document getDocument(int i)(Code)(Java Doc)
public com.sun.jbi.wsdl2.Document getDocument()(Code)(Java Doc)
final protected ExtensibleDocumentedType getExBean()(Code)(Java Doc)
public com.sun.jbi.wsdl2.Extensions getExtensions()(Code)(Java Doc)
public void setDocument(int i, com.sun.jbi.wsdl2.Document theDocument)(Code)(Java Doc)
public void setDocument(com.sun.jbi.wsdl2.Document theDocument)(Code)(Java Doc)
public void setExtensions(com.sun.jbi.wsdl2.Extensions theExtensions)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.