All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jibx.schema.org.w3._2004._08.wsdl.wsdl20.DocumentedType Maven / Gradle / Ivy


package org.jibx.schema.org.w3._2004._08.wsdl.wsdl20;

/** 
 * 
 This type is extended by component types to allow them to be documented.

 * 
 * Schema fragment(s) for this class:
 * 
 * <xs:complexType xmlns:ns="http://www.w3.org/2004/08/wsdl" xmlns:xs="http://www.w3.org/2001/XMLSchema" mixed="false" name="DocumentedType">
 *   <xs:sequence>
 *     <xs:element type="ns:DocumentationType" name="documentation" minOccurs="0"/>
 *   </xs:sequence>
 * </xs:complexType>
 * 
*/ public class DocumentedType { private DocumentationType documentation; /** * Get the 'documentation' element value. * * @return value */ public DocumentationType getDocumentation() { return documentation; } /** * Set the 'documentation' element value. * * @param documentation */ public void setDocumentation(DocumentationType documentation) { this.documentation = documentation; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy