KickJava   Java API By Example, From Geeks To Geeks.

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


1 package net.suberic.pooka.gui;
2 import net.suberic.pooka.*;
3
4 public interface MessageUI extends UserProfileContainer, ErrorHandler, ActionContainer {
5
6   public void openMessageUI();
7   
8   public void closeMessageUI();
9   
10   public MessageProxy getMessageProxy();
11   
12   public String JavaDoc showInputDialog(String JavaDoc inputMessage, String JavaDoc title);
13
14   public String JavaDoc showInputDialog(Object JavaDoc[] inputPanels, String JavaDoc title);
15   
16   public int showConfirmDialog(String JavaDoc message, String JavaDoc title, int optionType, int messageType);
17   
18   public void showMessageDialog(String JavaDoc message, String JavaDoc title);
19
20   public net.suberic.util.swing.ProgressDialog createProgressDialog(int min, int max, int initialValue, String JavaDoc title, String JavaDoc content);
21
22   public void setBusy(boolean newValue);
23   
24   public void setEnabled(boolean newValue);
25
26   public void refreshDisplay() throws javax.mail.MessagingException JavaDoc;
27
28   /**
29    * Shows the current display of the encryption status.
30    */

31   public net.suberic.pooka.gui.crypto.CryptoStatusDisplay getCryptoStatusDisplay();
32
33
34 }
35
Popular Tags