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 ComplexContentImpl extends AbstractSimpleEntity implements ComplexContent { private static final long serialVersionUID = 1; public EntityDescriptor<ComplexContent> wGetEntityDescriptor() { return XsdEntityDescriptorEnum.ComplexContent; } public int wGetEntityOrd() { return XsdEntityDescriptorEnum.ComplexContent_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 BooleanData mixed; public BooleanData getMixed() { return notifyRequested(XsdFeatureDescriptorEnum.mixed, mixed); } public void setMixed(BooleanData mixed) { notifyChanged(XsdFeatureDescriptorEnum.mixed, this.mixed, this.mixed = mixed); } private Annotation annotation; public Annotation getAnnotation() { return notifyRequested(XsdFeatureDescriptorEnum.annotation, annotation); } public void setAnnotation(Annotation annotation) { notifyChanged(XsdFeatureDescriptorEnum.annotation, this.annotation, this.annotation = annotation); } private ComplexDerivation derivation; public ComplexDerivation getDerivation() { return notifyRequested(XsdFeatureDescriptorEnum.derivation, derivation); } public void setDerivation(ComplexDerivation derivation) { notifyChanged(XsdFeatureDescriptorEnum.derivation, this.derivation, this.derivation = derivation); } 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 getMixed().wGetAdaptee(false); case 4: return getAnnotation().wGetAdaptee(false); case 5: return getDerivation().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: setMixed(value.wGetAdapter(XsdEntityDescriptorEnum.BooleanData)); break; case 4: setAnnotation(value.wGetAdapter(XsdEntityDescriptorEnum.Annotation)); break; case 5: setDerivation(value .wGetAdapter(XsdEntityDescriptorEnum.ComplexDerivation)); break; default: throw new IllegalArgumentException(); } } public int wSize() { return 6; } }