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 PropertiesImpl extends AbstractListCompositeEntity<Property> implements Properties { 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.Properties_ord; } public EntityDescriptor<Properties> wGetEntityDescriptor() { return PojoEntityDescriptorEnum.Properties; } }