package org.whole.lang.pojo.model.impl; import org.whole.lang.model.AbstractListCompositeEntity; import org.whole.lang.pojo.model.*; import org.whole.lang.pojo.visitors.IPojoVisitor; import org.whole.lang.pojo.reflect.PojoEntityDescriptorEnum; import org.whole.lang.reflect.EntityDescriptor; /** * @generator Whole */ public class ReferenceTypesImpl extends AbstractListCompositeEntity<ReferenceType> implements ReferenceTypes { private static final long serialVersionUID = 1; public void accept(IPojoVisitor visitor) { try { visitor.visit(this); } catch (Exception e) { throw org.whole.lang.exceptions.IWholeRuntimeException.asWholeException(e, this, visitor.getBindings()); } } public int wGetEntityOrd() { return PojoEntityDescriptorEnum.ReferenceTypes_ord; } public EntityDescriptor<ReferenceTypes> wGetEntityDescriptor() { return PojoEntityDescriptorEnum.ReferenceTypes; } }