Skip to content

Latest commit

 

History

History
41 lines (38 loc) · 1.69 KB

README.md

File metadata and controls

41 lines (38 loc) · 1.69 KB

Overview

This is a program that simulates a server that handles tasks that require a number of workers. This project was developed on the IntelliJ IDEA Community Edition.

The main controller/view

Figure 1. The view of the application. The tab containing the table view of tasks (left) and the tab containing the table view of workers (right).

The task's controller/view

Figure 2. The view of a task. The task is defined as an object that requires an amount of work to be accomplished. The identifier is generated automatically, while the rest of the fields must be filled in manually by the user.

The worker's controller/view

Figure 3. The view of a worker. The worker is defined as an object that provides a quantity of work to accomplish a task. The same rules as in the task's view are applied here.