forked from sanjana091001/bus_booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
busbtn.java
129 lines (122 loc) · 2.59 KB
/
busbtn.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
package bus_booking;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
public class busbtn extends JFrame implements ActionListener{
JButton addBtn, searchBtn, editBtn, deleteBtn;
JLabel desc;
JTextField n;
busbtn()
{
setTitle("Bus");
getContentPane().setBackground(Color.WHITE);
setBackground(Color.CYAN);
getContentPane().setForeground(Color.WHITE);
getContentPane().setLayout(new FlowLayout());
JLabel label = new JLabel("Bus");
label.setFont(new Font("SANS_SERIF", Font.BOLD, 20));
label.setForeground(Color.BLACK);
getContentPane().add(label);
setBounds(400, 200, 400, 400);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton addBtn = new JButton("Add new Bus");
addBtn.addActionListener(new ActionListener() {
bus obj=new bus(1,50,"bus_type1","bus_ownner1","driver1", "cond1", "bus1",33);
public void actionPerformed(ActionEvent e)
{
try
{
obj.addBus();
}
catch(Exception e1)
{
e1.printStackTrace();
}
}
});
JButton searchBtn=new JButton("Search Bus");
JButton editBtn=new JButton("Edit Bus");
JButton deleteBtn=new JButton("Delete Bus");
deleteBtn.addActionListener(new ActionListener() {
bus obj=new bus(1,50,"bus_type1","bus_ownner1","driver1", "cond1", "bus1",33);
public void actionPerformed(ActionEvent e)
{
try
{
obj.deleteBus("BUS1");
}
catch(Exception e1)
{
e1.printStackTrace();
}
}
});
addBtn.addActionListener(this);
searchBtn.addActionListener(this);
editBtn.addActionListener(this);
deleteBtn.addActionListener(this);
add(addBtn);
add(searchBtn);
add(editBtn);
add(deleteBtn);
setVisible(true);
}
public void actionPerformed(ActionEvent ae)
{
bus obj=new bus(1,50,"bus_type1","bus_owner1","driver1", "cond1", "bus1",33);
if(ae.getSource() == addBtn)
{
try
{
obj.addBus();
}
catch(Exception e)
{
e.printStackTrace();
}
repaint();
}
else if(ae.getSource()==searchBtn)
{
try
{
obj.searchBus("bus1");
}
catch(Exception e)
{
e.printStackTrace();
}
repaint();
}
else if(ae.getSource()==editBtn)
{
try
{
obj.editBus("bus1");
}
catch(Exception e)
{
e.printStackTrace();
}
repaint();
}
else if(ae.getSource()==deleteBtn)
{
try
{
obj.deleteBus("BUS1");
}
catch(Exception e)
{
e.printStackTrace();
}
repaint();
}
}
}