org.apache.ws.jaxme.xs
Interface XSDocumentation

All Superinterfaces:
XSObject
All Known Implementing Classes:
XSDocumentationImpl

public interface XSDocumentation
extends XSObject

Author:
Jochen Wiedmann

Method Summary
 java.lang.Object[] getChilds()
          Returns the documentations content.
 XmlLang getLanguage()
          Returns the documentations xml:lang attribute or null, if no such attribute is defined.
 XsAnyURI getSource()
          Returns the documentations source element or null, if no such attribute is defined.
 java.lang.String getText()
          Merges the String elements returned by getChilds() into a single String.
 
Methods inherited from interface org.apache.ws.jaxme.xs.XSObject
getLocator, getParentObject, getXSSchema, isTopLevelObject, validate
 

Method Detail

getLanguage

XmlLang getLanguage()

Returns the documentations xml:lang attribute or null, if no such attribute is defined.


getSource

XsAnyURI getSource()

Returns the documentations source element or null, if no such attribute is defined.


getChilds

java.lang.Object[] getChilds()

Returns the documentations content. The objects in the array are either of:

See Also:
getText()

getText

java.lang.String getText()

Merges the String elements returned by getChilds() into a single String.

See Also:
getChilds()