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

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

#5 more refactoring, removed NegoGUIApp.negoGUIView. ref

File size: 472 bytes
RevLine 
[10]1package genius.gui;
2
3import java.awt.Component;
[11]4import java.awt.Frame;
[10]5
6public interface MainPanelInterface {
7
8 /**
9 * Open a new tab in the edit area (right half usually) of the main panel
10 *
11 * @param title
12 * title for the new tab
13 * @param comp
14 * the component to show there
15 */
16 public void addTab(String title, Component comp);
[11]17
18 /**
19 *
20 * @return a Frame that can be used for centering dialogs
21 */
22 public Frame getMainFrame();
[10]23}
Note: See TracBrowser for help on using the repository browser.