|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface WSDLExtensible
Interface that represents WSDL concepts that can have extensions.
| Method Summary | ||
|---|---|---|
void |
addExtension(java.util.Collection<WSDLExtension> extension)
Adds a new WSDLExtension
to this object. |
|
|
getExtension(java.lang.Class<T> type)
Gets the extension that is assignable to the given type. |
|
java.lang.Iterable<WSDLExtension> |
getExtensions()
Gets all the WSDLExtensions
added through #addExtension(Collection. |
|
| Method Detail |
|---|
java.lang.Iterable<WSDLExtension> getExtensions()
WSDLExtensions
added through #addExtension(Collection) .
<T extends WSDLExtension> java.util.Collection<T> getExtension(java.lang.Class<T> type)
Iterator itr = getExtensions(type); if(itr.hasNext()) return itr.next(); else return null;
void addExtension(java.util.Collection<WSDLExtension> extension)
WSDLExtension
to this object.
extension - must not be null.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||