01: package fr.aliacom.form.common; 02: 03: public interface IFormComponent { 04: void reset(); 05: 06: void setValueBean(Object bean); 07: 08: /** 09: * Method getNativeWidget. 10: * @return Object a JComponent or an swt widget 11: */ 12: Object getNativeWidget(); 13: }