package org.whole.lang.frames.model.adapters; import org.whole.lang.model.adapters.AbstractEntityAdapter; import org.whole.lang.frames.model.*; import org.whole.lang.model.IEntity; import org.whole.lang.frames.visitors.IFramesVisitor; import org.whole.lang.reflect.EntityDescriptor; import org.whole.lang.frames.reflect.FramesEntityDescriptorEnum; /** * @generator Whole */ public class ShortValueAdapter extends AbstractEntityAdapter implements ShortValue { private static final long serialVersionUID = 1; public ShortValueAdapter(IEntity implementor) { super(implementor); } public ShortValueAdapter() { } public void accept(IFramesVisitor visitor) { if (visitor.visitAdapter(this)) visitor.visit(this); } public EntityDescriptor<ShortValue> wGetEntityDescriptor() { return FramesEntityDescriptorEnum.ShortValue; } public short getValue() { return wShortValue(); } public void setValue(short value) { wSetValue(value); } }