package org.whole.lang.changes.model.impl; import org.whole.lang.model.AbstractListCompositeEntity; import org.whole.lang.changes.model.*; import org.whole.lang.changes.visitors.IChangesVisitor; import org.whole.lang.changes.reflect.ChangesEntityDescriptorEnum; import org.whole.lang.reflect.EntityDescriptor; /** * @generator Whole */ public class ChangesImpl extends AbstractListCompositeEntity<Change> implements Changes { private static final long serialVersionUID = 1; public void accept(IChangesVisitor visitor) { try { visitor.visit(this); } catch (Exception e) { throw org.whole.lang.exceptions.IWholeRuntimeException.asWholeException(e, this, visitor.getBindings()); } } public int wGetEntityOrd() { return ChangesEntityDescriptorEnum.Changes_ord; } public EntityDescriptor<Changes> wGetEntityDescriptor() { return ChangesEntityDescriptorEnum.Changes; } }