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 FactoryMethodsImpl extends AbstractListCompositeEntity<FactoryMethod> implements FactoryMethods { 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.FactoryMethods_ord; } public EntityDescriptor<FactoryMethods> wGetEntityDescriptor() { return PojoEntityDescriptorEnum.FactoryMethods; } }