package org.whole.lang.frames.model.impl; import org.whole.lang.model.AbstractListCompositeEntity; import org.whole.lang.frames.model.*; import org.whole.lang.frames.visitors.IFramesVisitor; import org.whole.lang.frames.reflect.FramesEntityDescriptorEnum; import org.whole.lang.reflect.EntityDescriptor; /** * @generator Whole */ public class VariableFeaturesImpl extends AbstractListCompositeEntity<VariableFeature> implements VariableFeatures { private static final long serialVersionUID = 1; public void accept(IFramesVisitor visitor) { try { visitor.visit(this); } catch (Exception e) { throw org.whole.lang.exceptions.IWholeRuntimeException.asWholeException(e, this, visitor.getBindings()); } } public int wGetEntityOrd() { return FramesEntityDescriptorEnum.VariableFeatures_ord; } public EntityDescriptor<VariableFeatures> wGetEntityDescriptor() { return FramesEntityDescriptorEnum.VariableFeatures; } }