Last change
on this file since 11 was 11, checked in by Wouter Pasman, 7 years ago |
#5 more refactoring, removed NegoGUIApp.negoGUIView. ref
|
File size:
472 bytes
|
Rev | Line | |
---|
[10] | 1 | package genius.gui;
|
---|
| 2 |
|
---|
| 3 | import java.awt.Component;
|
---|
[11] | 4 | import java.awt.Frame;
|
---|
[10] | 5 |
|
---|
| 6 | public 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.