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 PropertyValuePairsImpl extends AbstractListCompositeEntity<Constructors> implements PropertyValuePairs { 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.PropertyValuePairs_ord; } public EntityDescriptor<PropertyValuePairs> wGetEntityDescriptor() { return PojoEntityDescriptorEnum.PropertyValuePairs; } }