-
Notifications
You must be signed in to change notification settings - Fork 0
/
Room.java
129 lines (107 loc) · 3.72 KB
/
Room.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package hotel.management.system;
import java.awt.BorderLayout;
import java.awt.*;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import net.proteanit.sql.DbUtils;
import javax.swing.JTable;
import java.sql.*;
import javax.swing.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class Room extends JFrame {
Connection conn = null;
private JPanel contentPane;
private JTable table;
private JLabel lblAvailability;
private JLabel lblCleanStatus;
private JLabel lblNewLabel;
private JLabel lblNewLabel_1;
private JLabel lblRoomNumber;
private JLabel lblId;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Room frame = new Room();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public Room() throws SQLException {
//conn = Javaconnect.getDBConnection();
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(450, 200, 1100, 600);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
ImageIcon i1 = new ImageIcon(ClassLoader.getSystemResource("hotel/management/system/icons/eight.jpg"));
Image i3 = i1.getImage().getScaledInstance(600, 600,Image.SCALE_DEFAULT);
ImageIcon i2 = new ImageIcon(i3);
JLabel l1 = new JLabel(i2);
l1.setBounds(500,0,600,600);
add(l1);
table = new JTable();
table.setBounds(0, 40, 500, 400);
contentPane.add(table);
JButton btnLoadData = new JButton("Load Data");
btnLoadData.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try{
conn c = new conn();
String displayCustomersql = "select * from Room";
//PreparedStatement pst = conn.prepareStatement(displayCustomersql);
ResultSet rs = c.s.executeQuery(displayCustomersql);
table.setModel(DbUtils.resultSetToTableModel(rs));
}
catch(Exception e1){
e1.printStackTrace();
}
}
});
btnLoadData.setBounds(100, 470, 120, 30);
btnLoadData.setBackground(Color.BLACK);
btnLoadData.setForeground(Color.WHITE);
contentPane.add(btnLoadData);
JButton btnNewButton = new JButton("Back");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
new Reception().setVisible(true);
setVisible(false);
}
});
btnNewButton.setBounds(290, 470, 120, 30);
btnNewButton.setBackground(Color.BLACK);
btnNewButton.setForeground(Color.WHITE);
contentPane.add(btnNewButton);
lblAvailability = new JLabel("Availability");
lblAvailability.setBounds(119, 15, 69, 14);
contentPane.add(lblAvailability);
lblCleanStatus = new JLabel("Clean Status");
lblCleanStatus.setBounds(216, 15, 76, 14);
contentPane.add(lblCleanStatus);
lblNewLabel = new JLabel("Price");
lblNewLabel.setBounds(330, 15, 46, 14);
contentPane.add(lblNewLabel);
lblNewLabel_1 = new JLabel("Bed Type");
lblNewLabel_1.setBounds(417, 15, 76, 14);
contentPane.add(lblNewLabel_1);
lblId = new JLabel("Room Number");
lblId.setBounds(12, 15, 90, 14);
contentPane.add(lblId);
getContentPane().setBackground(Color.WHITE);
}
}