package org.whole.lang.pojo.model.impl; import org.whole.lang.model.AbstractSimpleEntity; import org.whole.lang.pojo.model.*; import org.whole.lang.reflect.EntityDescriptor; import org.whole.lang.pojo.reflect.PojoEntityDescriptorEnum; import org.whole.lang.pojo.visitors.IPojoVisitor; import org.whole.lang.pojo.reflect.PojoFeatureDescriptorEnum; import org.whole.lang.model.IEntity; /** * @generator Whole */ public class DataTypeDeclarationImpl extends AbstractSimpleEntity implements DataTypeDeclaration { private static final long serialVersionUID = 1; public EntityDescriptor<DataTypeDeclaration> wGetEntityDescriptor() { return PojoEntityDescriptorEnum.DataTypeDeclaration; } public int wGetEntityOrd() { return PojoEntityDescriptorEnum.DataTypeDeclaration_ord; } public void accept(IPojoVisitor visitor) { try { visitor.visit(this); } catch (Exception e) { throw org.whole.lang.exceptions.IWholeRuntimeException.asWholeException(e, this, visitor.getBindings()); } } private Annotations annotations; public Annotations getAnnotations() { return notifyRequested(PojoFeatureDescriptorEnum.annotations, annotations); } public void setAnnotations(Annotations annotations) { notifyChanged(PojoFeatureDescriptorEnum.annotations, this.annotations, this.annotations = annotations); } private Template template; public Template getTemplate() { return notifyRequested(PojoFeatureDescriptorEnum.template, template); } public void setTemplate(Template template) { notifyChanged(PojoFeatureDescriptorEnum.template, this.template, this.template = template); } private Type name; public Type getName() { return notifyRequested(PojoFeatureDescriptorEnum.name, name); } public void setName(Type name) { notifyChanged(PojoFeatureDescriptorEnum.name, this.name, this.name = name); } public IEntity wGet(int index) { switch (index) { case 0: return getAnnotations().wGetAdaptee(false); case 1: return getTemplate().wGetAdaptee(false); case 2: return getName().wGetAdaptee(false); default: throw new IllegalArgumentException(); } } public void wSet(int index, IEntity value) { switch (index) { case 0: setAnnotations(value .wGetAdapter(PojoEntityDescriptorEnum.Annotations)); break; case 1: setTemplate(value.wGetAdapter(PojoEntityDescriptorEnum.Template)); break; case 2: setName(value.wGetAdapter(PojoEntityDescriptorEnum.Type)); break; default: throw new IllegalArgumentException(); } } public int wSize() { return 3; } }