package org.whole.examples.lang.imp.model; /** * @generator Whole */ public interface IntLiteral extends IImpEntity, Literal { public int getValue(); public void setValue(int value); }