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 EnumDeclarationImpl extends AbstractSimpleEntity implements EnumDeclaration { private static final long serialVersionUID = 1; public EntityDescriptor<EnumDeclaration> wGetEntityDescriptor() { return PojoEntityDescriptorEnum.EnumDeclaration; } public int wGetEntityOrd() { return PojoEntityDescriptorEnum.EnumDeclaration_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 ReferenceType name; public ReferenceType getName() { return notifyRequested(PojoFeatureDescriptorEnum.name, name); } public void setName(ReferenceType name) { notifyChanged(PojoFeatureDescriptorEnum.name, this.name, this.name = name); } private Names values; public Names getValues() { return notifyRequested(PojoFeatureDescriptorEnum.values, values); } public void setValues(Names values) { notifyChanged(PojoFeatureDescriptorEnum.values, this.values, this.values = values); } 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); case 3: return getValues().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.ReferenceType)); break; case 3: setValues(value.wGetAdapter(PojoEntityDescriptorEnum.Names)); break; default: throw new IllegalArgumentException(); } } public int wSize() { return 4; } }