1 package com.loribel.commons.abstraction;
2
3 import javax.swing.*;
4
5 /***
6 * Abstraction of an editor of property.
7 *
8 * @author Gregory Borelli
9 */
10 public interface GB_PropertyEditor
11 {
12 void setValue(
13 Object a_value);
14
15 Object getValueFromComponent();
16
17 JComponent getComponent();
18 }