mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
Now we have Code Vision hints which determine the author via Git history and show it in the editor automatically, and this information is more accurate than the tags which were automatically added when files were created. GitOrigin-RevId: def100791221280bad8a65cb10c3cff7cc211cb3
21 lines
580 B
Java
21 lines
580 B
Java
import java.awt.*;
|
|
|
|
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;
|
|
}
|
|
|
|
} |