Skip to content

Commit

Permalink
Documented EventCreatorView.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Krish Patel committed Dec 6, 2022
1 parent 80e8238 commit e45391c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions views/EventCreatorView.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
*/
public class EventCreatorView {
private final CalendarView calendarView; // the calendar view
private final TextField nameTextField = new TextField(""); // the name of the event
private final TextField pointsTextField = new TextField(""); // the points associated with the event
private final TextField descTextField = new TextField(""); // the description of the event
private final TextField nameTextField = new TextField("Name"); // the name of the event
private final TextField pointsTextField = new TextField("Points"); // the points associated with the event
private final TextField descTextField = new TextField("Description"); // the description of the event
private final Button changeTimeButton = new Button("Choose start/end time"); // Button for changing the type of time of the event
private final DatePicker pointDatePicker = new DatePicker(LocalDate.now()); // DatePicker for TimePoint event
private final TextField pointTimePicker = new TextField("Time (hh:mm)"); // Deadline time for TimePoint event
Expand Down

0 comments on commit e45391c

Please sign in to comment.