📄 commondialog.java
字号:
package org.dbgen.gui;import java.awt.*;import javax.swing.*;/** * This class was generated by a SmartGuide. * */public class CommonDialog { /** * This method was created by a SmartGuide. * @param title java.lang.String * @param msg java.lang.String */ public static void showError(Component comp, String title, String msg) { JOptionPane.showMessageDialog(comp, msg, title, JOptionPane.ERROR_MESSAGE); return; } /** * This method was created by a SmartGuide. * @param title java.lang.String * @param msg java.lang.String */ public static void showInformation(Component comp, String title, String msg) { JOptionPane.showMessageDialog(comp, msg, title, JOptionPane.INFORMATION_MESSAGE); return; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -