1 package com.loribel.commons.abstraction;
2
3 import javax.swing.*;
4
5 /***
6 * Build a component.
7 *
8 * @author Grégory Borelli
9 */
10 public interface GB_ComponentBuilder
11 {
12 /***
13 * Returns the component.
14 */
15 JComponent buildComponent();
16 }