package org.whole.lang.xsd.model.impl; import org.whole.lang.model.AbstractSimpleEntity; import org.whole.lang.xsd.model.*; import org.whole.lang.reflect.EntityDescriptor; import org.whole.lang.xsd.reflect.XsdEntityDescriptorEnum; import org.whole.lang.xsd.visitors.IXsdVisitor; import org.whole.lang.xsd.reflect.XsdFeatureDescriptorEnum; import org.whole.lang.model.IEntity; /** * @generator Whole */ public class DocumentationImpl extends AbstractSimpleEntity implements Documentation { private static final long serialVersionUID = 1; public EntityDescriptor<Documentation> wGetEntityDescriptor() { return XsdEntityDescriptorEnum.Documentation; } public int wGetEntityOrd() { return XsdEntityDescriptorEnum.Documentation_ord; } public void accept(IXsdVisitor visitor) { try { visitor.visit(this); } catch (Exception e) { throw org.whole.lang.exceptions.IWholeRuntimeException.asWholeException(e, this, visitor.getBindings()); } } private NamespaceDecls namespaces; public NamespaceDecls getNamespaces() { return notifyRequested(XsdFeatureDescriptorEnum.namespaces, namespaces); } public void setNamespaces(NamespaceDecls namespaces) { notifyChanged(XsdFeatureDescriptorEnum.namespaces, this.namespaces, this.namespaces = namespaces); } private StringData id; public StringData getId() { return notifyRequested(XsdFeatureDescriptorEnum.id, id); } public void setId(StringData id) { notifyChanged(XsdFeatureDescriptorEnum.id, this.id, this.id = id); } private Attributes attributes; public Attributes getAttributes() { return notifyRequested(XsdFeatureDescriptorEnum.attributes, attributes); } public void setAttributes(Attributes attributes) { notifyChanged(XsdFeatureDescriptorEnum.attributes, this.attributes, this.attributes = attributes); } private AnyURI source; public AnyURI getSource() { return notifyRequested(XsdFeatureDescriptorEnum.source, source); } public void setSource(AnyURI source) { notifyChanged(XsdFeatureDescriptorEnum.source, this.source, this.source = source); } private XMLLanguageType language; public XMLLanguageType getLanguage() { return notifyRequested(XsdFeatureDescriptorEnum.language, language); } public void setLanguage(XMLLanguageType language) { notifyChanged(XsdFeatureDescriptorEnum.language, this.language, this.language = language); } private AnnotationContents content; public AnnotationContents getContent() { return notifyRequested(XsdFeatureDescriptorEnum.content, content); } public void setContent(AnnotationContents content) { notifyChanged(XsdFeatureDescriptorEnum.content, this.content, this.content = content); } public IEntity wGet(int index) { switch (index) { case 0: return getNamespaces().wGetAdaptee(false); case 1: return getId().wGetAdaptee(false); case 2: return getAttributes().wGetAdaptee(false); case 3: return getSource().wGetAdaptee(false); case 4: return getLanguage().wGetAdaptee(false); case 5: return getContent().wGetAdaptee(false); default: throw new IllegalArgumentException(); } } public void wSet(int index, IEntity value) { switch (index) { case 0: setNamespaces(value .wGetAdapter(XsdEntityDescriptorEnum.NamespaceDecls)); break; case 1: setId(value.wGetAdapter(XsdEntityDescriptorEnum.StringData)); break; case 2: setAttributes(value.wGetAdapter(XsdEntityDescriptorEnum.Attributes)); break; case 3: setSource(value.wGetAdapter(XsdEntityDescriptorEnum.AnyURI)); break; case 4: setLanguage(value .wGetAdapter(XsdEntityDescriptorEnum.XMLLanguageType)); break; case 5: setContent(value .wGetAdapter(XsdEntityDescriptorEnum.AnnotationContents)); break; default: throw new IllegalArgumentException(); } } public int wSize() { return 6; } }