package org.whole.lang.unifiedlambdadelta.model.adapters; import org.whole.lang.model.adapters.AbstractEntityAdapter; import org.whole.lang.unifiedlambdadelta.model.*; import org.whole.lang.model.IEntity; import org.whole.lang.unifiedlambdadelta.visitors.IUnifiedLambdaDeltaVisitor; import org.whole.lang.reflect.EntityDescriptor; import org.whole.lang.unifiedlambdadelta.reflect.UnifiedLambdaDeltaEntityDescriptorEnum; /** * @generator Whole */ public class LevelAdapter extends AbstractEntityAdapter implements Level { private static final long serialVersionUID = 1; public LevelAdapter(IEntity implementor) { super(implementor); } public LevelAdapter() { } public void accept(IUnifiedLambdaDeltaVisitor visitor) { if (visitor.visitAdapter(this)) visitor.visit(this); } public EntityDescriptor<Level> wGetEntityDescriptor() { return UnifiedLambdaDeltaEntityDescriptorEnum.Level; } public int getValue() { return wIntValue(); } public void setValue(int value) { wSetValue(value); } }