Write a Java statements that define a variable named window of type Rectangle, and then create a Rectangle object and assign it to that variable. The Rectangle constructor has two int parameters. Explain in detail the action of the code below. private void updateDisplayO int hour = hours.getValue(); String suffix = "am"; if(hour >= 12) hour = hour - 12; suffix = "pm"; if(hour == 0) hour = 12; displayString = hour +"." + minutes.getDisplayValue() + suffix;