01: package net.xoetrope.xui;
02:
03: import java.awt.Dimension;
04: import java.awt.Container;
05:
06: /**
07: * An interface used to allow the message box dialog to be displayed
08: * sindependantly of the base package
09: * <p> Copyright (c) Xoetrope Ltd., 2002-2003</p>
10: * <p> $Revision: 1.1 $</p>
11: * <p> License: see License.txt</p>
12: */
13: public interface XMessageBoxSetup {
14: /**
15: * Setup the content of the message box
16: * @param title the message box title or caption
17: * @param msg the text of the message
18: * @param size the size of the owner page
19: * @param page the content page
20: */
21: public void setup(String title, String msg, Dimension size,
22: Container page);
23: }
|