source: src/main/java/genius/gui/MainPanelInterface.java@ 10

Last change on this file since 10 was 10, checked in by Wouter Pasman, 7 years ago

#5 refactoring NegoGuiView. Made interface to NegoGuiView to get clear about the core public functions of this panel.

File size: 344 bytes
Line 
1package genius.gui;
2
3import java.awt.Component;
4
5public interface MainPanelInterface {
6
7 /**
8 * Open a new tab in the edit area (right half usually) of the main panel
9 *
10 * @param title
11 * title for the new tab
12 * @param comp
13 * the component to show there
14 */
15 public void addTab(String title, Component comp);
16}
Note: See TracBrowser for help on using the repository browser.