1 package com.loribel.commons.abstraction;
2
3 import javax.swing.*;
4
5 /***
6 * Interface for Object witch can build menu.
7 *
8 * @author Grégory Borelli
9 */
10 public interface GB_MenusOwner
11 {
12
13 /***
14 * Returns an array of menus.
15 *
16 * @return JMenu[]
17 */
18 JMenu[] getMenus();
19
20 }