Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / javadocs / scripting / commonsdialog.java @ 487

History | View | Annotate | Download (696 Bytes)

1
package scripting;
2

    
3
/**
4
 * 
5
 * 
6
 */
7
public class commonsdialog {
8

    
9
    public static final int FORBIDEN = 0;
10
    public static final int IDEA = 1;
11
    public static final int WARNING = 2;
12
    public static final int QUESTION = 3;
13

    
14
    /**
15
     * Shows a message dialog with ok button only.
16
     *
17
     * @param message
18
     * @param title
19
     * @param messageType
20
     *
21
     */
22
    public static void msgbox(String message, String title, int messageType) {
23
       
24
    }
25

    
26
    /**
27
     * Shows a message dialog with ok button only of messageType IDEA.
28
     *
29
     * @param message
30
     * @param title
31
     *
32
     */
33
    public static void msgbox(String message, String title) {
34
        
35
    }
36

    
37
}