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