mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
name suggestions: do not check next members for param name conflicts
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user