1 /*2 * InputControlUI.java3 *4 * Created on June 7, 2006, 3:09 PM5 *6 * To change this template, choose Tools | Template Manager7 * and open the template in the editor.8 */9 10 package com.jaspersoft.jasperserver.irplugin.gui.inputcontrols.ui;11 12 /**13 *14 * @author gtoffoli15 */16 public interface InputControlUI {17 18 public Object getValue();19 public void setValue(Object v);20 public void setLabel(String lbl);21 public void setHistory(java.util.List values);22 public void setReadOnly( boolean b );23 24 25 26 }27