1 17 package org.apache.ws.jaxme.xs.impl; 18 19 import org.apache.ws.jaxme.xs.XSDocumentation; 20 import org.apache.ws.jaxme.xs.XSObject; 21 import org.apache.ws.jaxme.xs.xml.XmlLang; 22 import org.apache.ws.jaxme.xs.xml.XsAnyURI; 23 import org.apache.ws.jaxme.xs.xml.XsEDocumentation; 24 25 26 29 public class XSDocumentationImpl extends XSObjectImpl implements XSDocumentation { 30 31 33 protected XSDocumentationImpl(XSObject pParent, XsEDocumentation pBaseDocumentation) { 34 super(pParent, pBaseDocumentation); 35 } 36 37 39 public XmlLang getLanguage() { 40 return ((XsEDocumentation) getXsObject()).getLang(); 41 } 42 43 45 public XsAnyURI getSource() { 46 return ((XsEDocumentation) getXsObject()).getSource(); 47 } 48 49 51 public Object [] getChilds() { 52 return null; 54 } 55 56 58 public String getText() { 59 return ((XsEDocumentation) getXsObject()).getText(); 60 } 61 } 62 | Popular Tags |