I need a simple way to implement a Calendar (similar to google calendar) in java. The calendar must display Monday - Sunday at the top and each hour as a row.
Monday | Tuesday | Wednesday
08:00
09:00
10:00
11:00
How would one create a calendar in Swing like that? I'm using Netbeans IDE. Each column should be able to hold some text.
Could I just use the table component in swing? If so, can i modify it to meet my needs?