-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReturnBook.java
148 lines (133 loc) · 5.14 KB
/
ReturnBook.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.GroupLayout;
import javax.swing.GroupLayout.Alignment;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import java.awt.Font;
import java.awt.Color;
import javax.swing.JTextField;
import javax.swing.JButton;
import javax.swing.LayoutStyle.ComponentPlacement;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class ReturnBook extends JFrame {
static ReturnBook frame;
private JPanel contentPane;
private JTextField textField;
private JTextField textField_1;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
frame = new ReturnBook();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public ReturnBook() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 516, 413);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
JLabel lblReturnBook = new JLabel("Return Book");
lblReturnBook.setForeground(Color.GRAY);
lblReturnBook.setFont(new Font("Tahoma", Font.PLAIN, 18));
JLabel lblBookCallno = new JLabel("Book Callno:");
JLabel lblStudentId = new JLabel("Student Id:");
textField = new JTextField();
textField.setColumns(10);
textField_1 = new JTextField();
textField_1.setColumns(10);
JButton btnReturnBook = new JButton("Return Book");
btnReturnBook.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String bookcallno=textField.getText();
int studentid=Integer.parseInt(textField_1.getText());
int i=ReturnBookDao.delete(bookcallno, studentid);
if(i>0){
JOptionPane.showMessageDialog(ReturnBook.this,"Book returned successfully!");
LibrarianSuccess.main(new String[]{});
frame.dispose();
}else{
JOptionPane.showMessageDialog(ReturnBook.this,"Sorry, unable to return book!");
}
}
});
JLabel lblNewLabel = new JLabel("Note: Check the book properly!");
lblNewLabel.setForeground(Color.RED);
lblNewLabel.setFont(new Font("Tahoma", Font.PLAIN, 13));
JButton btnBack = new JButton("Back");
btnBack.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
LibrarianSuccess.main(new String[]{});
frame.dispose();
}
});
GroupLayout gl_contentPane = new GroupLayout(contentPane);
gl_contentPane.setHorizontalGroup(
gl_contentPane.createParallelGroup(Alignment.TRAILING)
.addGroup(gl_contentPane.createSequentialGroup()
.addGap(36)
.addGroup(gl_contentPane.createParallelGroup(Alignment.TRAILING, false)
.addComponent(lblStudentId, Alignment.LEADING, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblBookCallno, Alignment.LEADING, GroupLayout.DEFAULT_SIZE, 78, Short.MAX_VALUE))
.addGap(56)
.addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)
.addComponent(textField_1, GroupLayout.PREFERRED_SIZE, 181, GroupLayout.PREFERRED_SIZE)
.addComponent(textField, GroupLayout.PREFERRED_SIZE, 181, GroupLayout.PREFERRED_SIZE))
.addContainerGap(139, Short.MAX_VALUE))
.addGroup(gl_contentPane.createSequentialGroup()
.addContainerGap(210, Short.MAX_VALUE)
.addComponent(btnReturnBook, GroupLayout.PREFERRED_SIZE, 104, GroupLayout.PREFERRED_SIZE)
.addGap(176))
.addGroup(gl_contentPane.createSequentialGroup()
.addContainerGap(205, Short.MAX_VALUE)
.addComponent(lblReturnBook)
.addGap(187))
.addGroup(gl_contentPane.createSequentialGroup()
.addGap(19)
.addComponent(lblNewLabel)
.addContainerGap(294, Short.MAX_VALUE))
.addGroup(gl_contentPane.createSequentialGroup()
.addContainerGap(355, Short.MAX_VALUE)
.addComponent(btnBack)
.addGap(46))
);
gl_contentPane.setVerticalGroup(
gl_contentPane.createParallelGroup(Alignment.LEADING)
.addGroup(gl_contentPane.createSequentialGroup()
.addContainerGap()
.addComponent(lblReturnBook)
.addGap(32)
.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)
.addComponent(lblBookCallno)
.addComponent(textField, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addGap(34)
.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)
.addComponent(lblStudentId)
.addComponent(textField_1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addGap(29)
.addComponent(btnReturnBook, GroupLayout.PREFERRED_SIZE, 34, GroupLayout.PREFERRED_SIZE)
.addGap(23)
.addComponent(btnBack)
.addPreferredGap(ComponentPlacement.RELATED, 28, Short.MAX_VALUE)
.addComponent(lblNewLabel)
.addGap(72))
);
contentPane.setLayout(gl_contentPane);
}
}