Package org.apache.wsil
Interface WSILElementWithAbstract
-
- All Superinterfaces:
java.io.Serializable,WSILElement
- All Known Subinterfaces:
Description,Inspection,Link,Service
- All Known Implementing Classes:
DescriptionImpl,InspectionImpl,LinkImpl,ServiceImpl,ServiceReferenceElement,WSILElementWithAbstractImpl
public interface WSILElementWithAbstract extends WSILElement
Common WS-Inpsection element definition for elements that contain an abstract element.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddAbstract(Abstract abs)Add one abstract to this element.voidaddAbstracts(Abstract[] abstracts)Add abstracts to this element.Abstract[]getAbstracts()Get all abstracts for this element.voidremoveAbstracts()Remove all abstracts from this element.-
Methods inherited from interface org.apache.wsil.WSILElement
toXMLString
-
-
-
-
Method Detail
-
addAbstract
void addAbstract(Abstract abs)
Add one abstract to this element.- Parameters:
abs- the abstract to add
-
addAbstracts
void addAbstracts(Abstract[] abstracts)
Add abstracts to this element.- Parameters:
abstracts- the array of abstracts to add
-
removeAbstracts
void removeAbstracts()
Remove all abstracts from this element.
-
getAbstracts
Abstract[] getAbstracts()
Get all abstracts for this element.- Returns:
- Returns all abstracts for this element.
-
-