Package org.apache.wsil
Interface WSILElementWithText
-
- All Superinterfaces:
java.io.Serializable
,WSILElement
- All Known Subinterfaces:
Abstract
,ServiceName
- All Known Implementing Classes:
AbstractImpl
,ServiceNameImpl
,WSILElementWithTextImpl
public interface WSILElementWithText extends WSILElement
A WS-Inspection element that can contain a text value. The text value can be associated with a language setting.- Version:
- 1.0
- Author:
- Peter Brittenham
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getLang()
Get the language attribute for the abstract.java.lang.String
getText()
Get the abstract text string.void
setLang(java.lang.String lang)
Set the language attribute for the abstract.void
setText(java.lang.String text)
Set the documentation text string.-
Methods inherited from interface org.apache.wsil.WSILElement
toXMLString
-
-
-
-
Method Detail
-
getLang
java.lang.String getLang()
Get the language attribute for the abstract.- Returns:
- Returns the language type for this abstract.
-
getText
java.lang.String getText()
Get the abstract text string.- Returns:
- Returns the abstract as a text string.
-
setLang
void setLang(java.lang.String lang)
Set the language attribute for the abstract.- Parameters:
the
- language type for this abstract.
-
setText
void setText(java.lang.String text)
Set the documentation text string.- Parameters:
text
- the documentation text string
-
-