KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > pooka > gui > ContentPanel


1 package net.suberic.pooka.gui;
2
3 public interface ContentPanel extends net.suberic.pooka.UserProfileContainer, ActionContainer {
4   /**
5    * Returns the JComponent for this ContentPanel.
6    */

7   public javax.swing.JComponent JavaDoc getUIComponent();
8   
9   /**
10    * Sets the JComponent for this ContentPanel.
11    */

12   public void setUIComponent(javax.swing.JComponent JavaDoc comp);
13   
14   /**
15    * Shows a Help Screen with the given title and URL.
16    */

17   public void showHelpScreen(String JavaDoc title, java.net.URL JavaDoc url);
18   
19   /**
20    * Opens the given Vector of FolderInfos.
21    */

22   public void openSavedFolders(java.util.Vector JavaDoc folderList);
23   
24   public void saveOpenFolders();
25   
26   public void savePanelSize();
27     
28   public boolean isSavingOpenFolders();
29
30   /**
31    * Refreshes any submenus that need to be refreshed.
32    */

33   public void refreshActiveMenus();
34 }
35
Popular Tags