package org.whole.lang.frames.model; /** * @generator Whole */ public interface IntValue extends IFramesEntity, Expression { public int getValue(); public void setValue(int value); }