org.apache.ws.jaxme.xs

Interface XSDocumentation

public interface XSDocumentation extends XSObject

Author: Jochen Wiedmann

Method Summary
Object[]getChilds()

Returns the documentations content.

XmlLanggetLanguage()

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

XsAnyURIgetSource()

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

StringgetText()

Merges the String elements returned by {@link #getChilds()} into a single String.

Method Detail

getChilds

public Object[] getChilds()

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

See Also: getText

getLanguage

public XmlLang getLanguage()

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

getSource

public XsAnyURI getSource()

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

getText

public String getText()

Merges the String elements returned by {@link #getChilds()} into a single String.

See Also: getChilds