1 package com.loribel.commons.abstraction;
2
3 import javax.swing.*;
4
5 /***
6 * Interface for Object that can build view.
7 *
8 * @author Grégory Borelli
9 */
10 public interface GB_ViewBuilderOwner
11 {
12 /***
13 * Method buildView.
14 *
15 * @return GB_View
16 */
17 JComponent buildView();
18
19 }