null Solved
This commit is contained in:
parent
47e6ffb30f
commit
34c06d2fb0
@ -42,6 +42,7 @@ public class MakkahCity {
|
|||||||
private static JLabel lblNumOfBuses;
|
private static JLabel lblNumOfBuses;
|
||||||
private static JLabel lblNumOfDonebuses;
|
private static JLabel lblNumOfDonebuses;
|
||||||
private static JLabel lblMaximumTripValue;
|
private static JLabel lblMaximumTripValue;
|
||||||
|
private static JLabel lblMinimumTripValue;
|
||||||
|
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
@ -251,12 +252,25 @@ public class MakkahCity {
|
|||||||
lblMaximumTrip.setBounds(383, 574, 112, 22);
|
lblMaximumTrip.setBounds(383, 574, 112, 22);
|
||||||
makkahFrame.getContentPane().add(lblMaximumTrip);
|
makkahFrame.getContentPane().add(lblMaximumTrip);
|
||||||
|
|
||||||
JLabel lblMaximumTripValue = new JLabel();
|
lblMaximumTripValue = new JLabel();
|
||||||
|
lblMaximumTripValue.setText("0:00");
|
||||||
lblMaximumTripValue.setForeground(new Color(255, 255, 255));
|
lblMaximumTripValue.setForeground(new Color(255, 255, 255));
|
||||||
lblMaximumTripValue.setFont(new Font("Rockwell", Font.PLAIN, 16));
|
lblMaximumTripValue.setFont(new Font("Rockwell", Font.PLAIN, 16));
|
||||||
lblMaximumTripValue.setBounds(506, 578, 46, 14);
|
lblMaximumTripValue.setBounds(506, 578, 46, 14);
|
||||||
makkahFrame.getContentPane().add(lblMaximumTripValue);
|
makkahFrame.getContentPane().add(lblMaximumTripValue);
|
||||||
|
|
||||||
|
JLabel lblMinimumTrip = new JLabel("MinimumTrip:");
|
||||||
|
lblMinimumTrip.setFont(new Font("Rockwell", Font.PLAIN, 16));
|
||||||
|
lblMinimumTrip.setForeground(Color.WHITE);
|
||||||
|
lblMinimumTrip.setBounds(623, 576, 112, 18);
|
||||||
|
makkahFrame.getContentPane().add(lblMinimumTrip);
|
||||||
|
|
||||||
|
lblMinimumTripValue = new JLabel("0:00");
|
||||||
|
lblMinimumTripValue.setForeground(Color.WHITE);
|
||||||
|
lblMinimumTripValue.setFont(new Font("Rockwell", Font.PLAIN, 16));
|
||||||
|
lblMinimumTripValue.setBounds(734, 580, 90, 14);
|
||||||
|
makkahFrame.getContentPane().add(lblMinimumTripValue);
|
||||||
|
|
||||||
//window
|
//window
|
||||||
makkahFrame.getContentPane().setBackground(new Color(70, 70, 70));
|
makkahFrame.getContentPane().setBackground(new Color(70, 70, 70));
|
||||||
makkahFrame.getContentPane().setForeground(new Color(0, 0, 0));
|
makkahFrame.getContentPane().setForeground(new Color(0, 0, 0));
|
||||||
@ -1139,13 +1153,12 @@ public class MakkahCity {
|
|||||||
String numOfdoneBuses = String.format("%d",getNumberOfArrivedBusses());
|
String numOfdoneBuses = String.format("%d",getNumberOfArrivedBusses());
|
||||||
lblNumOfDonebuses.setText(numOfdoneBuses);
|
lblNumOfDonebuses.setText(numOfdoneBuses);
|
||||||
|
|
||||||
//TODO Exception null why ????
|
if (Vehicle.getMaxArrived() != null && Vehicle.getMinArrived() != null) {
|
||||||
// if (Vehicle.getMaxArrived() != null && Vehicle.getMinArrived() != null) {
|
lblMaximumTripValue.setText(Vehicle.getMaxArrived().getTripTime().toString());
|
||||||
// lblMaximumTripValue.setText(Vehicle.getMaxArrived().toString());
|
lblMinimumTripValue.setText(Vehicle.getMinArrived().getTripTime().toString());
|
||||||
// }
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user