https://github.com/evanlei-git/micalendari-uni
Calendar assignment in Java. The app processes iCalendar files (iCal4j) and provides a graphical user interface (Swing) to create, read, and write calendar data, converting command-line operations into user-friendly buttons and controls.
https://github.com/evanlei-git/micalendari-uni
calendar java maven swing-gui
Last synced: 3 months ago
JSON representation
Calendar assignment in Java. The app processes iCalendar files (iCal4j) and provides a graphical user interface (Swing) to create, read, and write calendar data, converting command-line operations into user-friendly buttons and controls.
- Host: GitHub
- URL: https://github.com/evanlei-git/micalendari-uni
- Owner: EvanLei-git
- Created: 2024-10-24T09:17:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T15:10:49.000Z (almost 2 years ago)
- Last Synced: 2025-05-17T14:42:03.976Z (about 1 year ago)
- Topics: calendar, java, maven, swing-gui
- Language: Java
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ~ MiCalendari - Finished ~
### A Calendar Assignment in Java
The app processes iCalendar files (iCal4j) and provides a graphical user interface (Swing) to create, read, and write calendar data, converting command-line operations (First part of the Assignment) into user-friendly buttons and controls (Second part of the Assignment). Started as a group assignment but besides a few UI lines and a bunch of Unnecessary delays by my Groupmates i did 80%+ of the work to Finish this assignment.
## Acquired Skills:
- Using Maven as my Build automation tool! (quite fun)
- Creating a UI in Java (scary i know)
## How to use
Make sure you are in the correct path (where `pom.xml` is located).
Run `mvn clean install` then Run `mvn package` and check the `target` folder.
Execution: `java -jar miCalendari-2.0.jar`
## Classes
- **UIApp:** Manages all the UI functionalities.
- **CalendarManager:** Created to handle most of the functions/methods related to iCal4j.
- **Event:** Parent class that manages all Events.
- **Appointment:** Extends the Event class.
- **Task:** Extends the Event class.
- **CalendarApp (Main):** Created to handle user needs, as it contains the main method and all the views/settings the user needs for the smooth operation of the program. (CalendarApp was used in the First Part, while UIApp replaces it in the Second Part of the assignment.)
## From Concept to Completion (UI)
Image 1: Turning my Imagination into a Photoshop Design.
##
Image 2: Photoshop re-Design with the Half completed UI + More imagination.
##
Image 3: Perfection! Haven't been more proud about my art.
##
## License
MIT License
Copyright (c) 2023-2024 EvanLei-git
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.