sql编辑界面可全屏。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
549 B

package com.fr.solution.plugin.better.sql.editor;
import com.fr.design.dialog.BasicPane;
import com.fr.design.dialog.UIDialog;
import java.awt.*;
/**
* @author richie
* @date 2015-06-04
* @since 8.0
*/
public class FullScreenSQLEditorDialog extends UIDialog {
public FullScreenSQLEditorDialog(Frame parent, BasicPane pane) {
super(parent, pane);
}
public FullScreenSQLEditorDialog(Dialog parent, BasicPane pane) {
super(parent, pane);
}
@Override
public void checkValid() throws Exception {
}
}