|
|
@ -69,6 +69,10 @@ public class SwingFrame extends JFrame implements ActionListener { |
|
|
|
private JPanel startBackupPanel; |
|
|
|
private JPanel startRestorePanel; |
|
|
|
private JTabbedPane tabbedPane; |
|
|
|
private JTextField textField_1; |
|
|
|
private JTextField textField_2; |
|
|
|
private JTextField textField_3; |
|
|
|
private JTextField textField_4; |
|
|
|
/** |
|
|
|
* Launch the application. |
|
|
|
*/ |
|
|
@ -579,7 +583,70 @@ public class SwingFrame extends JFrame implements ActionListener { |
|
|
|
textField.setBounds(207, 91, 330, 24); |
|
|
|
startRestorePanel.add(textField); |
|
|
|
|
|
|
|
JPanel textPanel = new JPanel(); |
|
|
|
textPanel.setLayout(null); |
|
|
|
textPanel.setBackground(new Color(220, 220, 220)); |
|
|
|
tabbedPane.addTab("测试", null, textPanel, null); |
|
|
|
JButton button_7 = new JButton("开始数据库服务"); |
|
|
|
button_7.setFont(new Font("微软雅黑", Font.PLAIN, 15)); |
|
|
|
button_7.setBounds(14, 13, 170, 35); |
|
|
|
|
|
|
|
textPanel.add(button_7); |
|
|
|
|
|
|
|
JButton button_8 = new JButton("停止数据库服务"); |
|
|
|
button_8.setFont(new Font("微软雅黑", Font.PLAIN, 15)); |
|
|
|
button_8.setBounds(14, 61, 170, 24); |
|
|
|
button_8.addActionListener(new ActionListener() { |
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
textPanel.add(button_8); |
|
|
|
|
|
|
|
JButton button_9 = new JButton("开始中间件"); |
|
|
|
button_9.setFont(new Font("微软雅黑", Font.PLAIN, 15)); |
|
|
|
button_9.setBounds(14, 98, 170, 35); |
|
|
|
button_9.addActionListener(new ActionListener() { |
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
textPanel.add(button_9); |
|
|
|
|
|
|
|
JButton button_10 = new JButton("停止中间件"); |
|
|
|
button_10.setFont(new Font("微软雅黑", Font.PLAIN, 15)); |
|
|
|
button_10.setBounds(14, 153, 170, 35); |
|
|
|
button_10.addActionListener(new ActionListener() { |
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
textPanel.add(button_10); |
|
|
|
|
|
|
|
JButton button_11 = new JButton("测试按钮"); |
|
|
|
button_11.setFont(new Font("微软雅黑", Font.PLAIN, 15)); |
|
|
|
button_11.setBounds(14, 226, 170, 35); |
|
|
|
textPanel.add(button_11); |
|
|
|
|
|
|
|
textField_1 = new JTextField(); |
|
|
|
textField_1.setBounds(247, 19, 170, 29); |
|
|
|
textPanel.add(textField_1); |
|
|
|
textField_1.setColumns(10); |
|
|
|
|
|
|
|
textField_2 = new JTextField(); |
|
|
|
textField_2.setColumns(10); |
|
|
|
textField_2.setBounds(247, 86, 170, 29); |
|
|
|
textPanel.add(textField_2); |
|
|
|
|
|
|
|
textField_3 = new JTextField(); |
|
|
|
textField_3.setColumns(10); |
|
|
|
textField_3.setBounds(247, 159, 170, 29); |
|
|
|
textPanel.add(textField_3); |
|
|
|
|
|
|
|
textField_4 = new JTextField(); |
|
|
|
textField_4.setColumns(10); |
|
|
|
textField_4.setBounds(247, 232, 170, 29); |
|
|
|
textPanel.add(textField_4); |
|
|
|
// new Timer(500, new ActionListener() {
|
|
|
|
// @Override
|
|
|
|
// public void actionPerformed(ActionEvent e) {
|
|
|
|