01: /*
02: * soapUI, copyright (C) 2004-2007 eviware.com
03: *
04: * soapUI is free software; you can redistribute it and/or modify it under the
05: * terms of version 2.1 of the GNU Lesser General Public License as published by
06: * the Free Software Foundation.
07: *
08: * soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
09: * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: * See the GNU Lesser General Public License for more details at gnu.org.
11: */
12:
13: package com.eviware.x.dialogs;
14:
15: import java.awt.Dimension;
16:
17: /**
18: * @author Lars
19: */
20:
21: public interface XDialogs {
22: void showErrorMessage(String message);
23:
24: void showInfoMessage(String message);
25:
26: void showInfoMessage(String message, String title);
27:
28: void showExtendedInfo(String title, String description,
29: String content, Dimension size);
30:
31: boolean confirm(String question, String title);
32:
33: Boolean confirmOrCancel(String question, String title);
34:
35: String prompt(String question, String title, String value);
36:
37: String prompt(String question, String title);
38:
39: Object prompt(String question, String title, Object[] objects);
40:
41: Object prompt(String question, String title, Object[] objects,
42: String value);
43:
44: XProgressDialog createProgressDialog(String label, int length,
45: String initialValue, boolean canCancel);
46:
47: boolean confirmExtendedInfo(String title, String description,
48: String content, Dimension size);
49:
50: Boolean confirmOrCancleExtendedInfo(String title,
51: String description, String content, Dimension size);
52: }
|