
javax.wsdl.WSDLElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libre-wsdl4j Show documentation
Show all versions of libre-wsdl4j Show documentation
Open and Free WSDL library: Web Services Description Language. Libre-wsdl4j is a fork of WSDL4J 1.6.3. WSL4j is a Java stub generator for WSDL. Many software projects still depends on WSL4j, so the idea is that libre-wsdl4j should be an actively maintained version of this software on GitHub. "WSDL, that's an anchronym i haven't heard in almost ten years." Still big in the enterprise world" - comments on the Internet.
The newest version!
/*
* (c) Copyright IBM Corp 2006
*/
package javax.wsdl;
import javax.wsdl.extensions.AttributeExtensible;
import javax.wsdl.extensions.ElementExtensible;
import org.w3c.dom.Element;
/**
* This interface represents all WSDL Elements
*/
public interface WSDLElement extends java.io.Serializable,
AttributeExtensible,
ElementExtensible
{
/**
* Set the documentation element for this document.
*
* @param docEl the documentation element
*/
void setDocumentationElement(Element docEl);
/**
* Get the documentation element.
*
* @return the documentation element
*/
Element getDocumentationElement();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy