mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
24 lines
605 B
Java
24 lines
605 B
Java
import java.awt.*;
|
|
|
|
/**
|
|
* @author pegov
|
|
*/
|
|
public class MacMessages {
|
|
|
|
|
|
public static void showOkMessageDialog(String title, String message, String okText, Window co<caret>mponent) {
|
|
showMessageDialog(title, okText, null, null, message, component);
|
|
}
|
|
|
|
|
|
|
|
public static int showMessageDialog(String title,
|
|
String okText,
|
|
String alternateText,
|
|
String cancelText,
|
|
String message,
|
|
Window window) {
|
|
return 1;
|
|
}
|
|
|
|
} |