国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

CSIT213代做、代寫Java程序設(shè)計

時間:2024-05-28  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



School of Computing and Information Technology 
University of Wollongong 
Session: Autumn 2024 
CSIT213 Autumn Session 2024 
Assignment 3 
Published on 05 May 2024 Due: Saturday 01 June, 11:30 pm 
Total Marks: 15 marks 
Scope 
This assignment is related to the UML classes diagrams, Java classes definitions and implementations, 
polymorphism, collectors, file input/output, and JavaFX. 
Please read very carefully the information listed below. 
General Java coding requirements: 
 Create your programs with good programming style and form using proper blank spaces, indentation, and
braces to make your code easy to read and understand.
 Create identifiers with sensible names.
 Add proper comments to describe your code segments where they are necessary for readers to understand
what your code intends to achieve.
 Logical structures and statements are properly used for specific purposes.
 Read the assignment specification carefully, and make sure that you follow the direction in this
assignment. In every assignment source file that you will submit on this subject, you must put the
following information in the header of your program:
/*------------------------------------------------------
 My name: 
My student number: 
My course code: CSIT213 
My email address: 
Assignment number: 3 
-------------------------------------------------------*/
A submission procedure is explained at the end of the specification. 
It is recommended to solve the problems before attending the laboratory classes in order to efficiently use 
supervised laboratory time. 
A submission marked by Moodle as Late is treated as a late submission no matter how many seconds it is 
late. 
A policy regarding late submissions is included in the subject outline. 
A submission of compressed files (zipped, gzipped, rared, tared, 7-zipped, lhzed, … etc) is not allowed. The 
compressed files will not be evaluated. 
An implementation that does not compile due to one or more syntactical or processing errors scores no marks. 
It is expected that all tasks included in Assignment 3 will be solved individually without any cooperation 
from the other students. If you have any doubts, questions, etc. please consult your lecturer or tutor during 
lab classes or office hours. Plagiarism will result in a FAIL grade being recorded for the assessment task.  
Tasks 
In this assignment, you are required to design and implement a Department Employee and Project (DEP) 
System in Java. This system helps a company to manage employees and projects. 
 
Implementation 
 
The DEP system helps a company to manage departments, employees, projects and developers work on 
projects. The system load data of departments, employees, projects, and works-on from the text files when 
the program starts. Then the application shows a Graphic User Interface (GUI) so that a user can choose 
what to do. 
 
The UML class diagram of DEP is given below. You can add new classes, methods and attributes in the UML 
class diagram but CANNOT modify or delete any existing classes, attributes, and methods. Your java 
implementation must be consistent with the UML class diagram. 
 
 
 
First, we define an interface class DataIO in a file DataIO.java that only consists of three abstract 
methods: dataInput(Scanner), dataOutput(Formatter) and toString(). 
 Define a superclass Employee and two sub-classes Admin and Developer in a file Employee.java. The 
class Employee implements the interface DataIO. Two sub-classes override the methods defined in the 
interface DataIO. 
 
Define a class Department in a file Department.java that implements the methods of the interface 
DataIO. 
 
Define a class Project in a file Project.java that implements the method of the interface DataIO. 
 
Define a class WorksOn in a file WorksOn.java that implements the methods of the interface DataIO. 
 
The DEP class is defined in a file DEP.java that contains ArrayList containers containing objects of 
Department, Employee, Project and WorksOn. 
 
The DEP application initially loads data of departments, employees, projects, and works-on from the text 
files departments.txt, employees.txt, projects.txt and workson.txt and stores them in 
the containers by calling the methods loadDepartments(), loadEmployees(), loadProjects() and 
loadWorksOn(), then the application shows the GUI, handles the events from the user. 
 
The format of a file departments.txt contains data like 
 
1, SALES, 110, 1234.00, 02/01/2012 
2, ACCOUNTING, 120, 5566789.50, 30/10/2010 
3, GAMES, 150, 100000.00, 01/03/2008 
 
Each row is a record of a department. It contains a department number, name, manager number, budgets and 
manager start date. Each field is separated by a comma (,) and a space ( ). 
 
The format of a file employees.txt contains data like 
 
A, 600, Willy, 01/01/1988, 41 Station Street Wollongong NSW 2500, M, 250.5, 0, 9, Cook Read 
D, 700, Zhi, 12/09/1999, 112 Smith Street Windang NSW 2525, M, 80.2, 600, 9, C++ Java Python 
D, 800, Mary, 03/10/2000, 26 Gibsons Road Figtree NSW 2525, F, 50.0, 700, 9, Java Python SQL 
 
Each row is a record of an employee. The first character is the type of employee. The letter D means it is a 
Developer record. The letter A means it is an Admin record. Each field is separated by a comma (,) and a 
space ( ). 
 An admin record contains an employee number, name, date of birth, address, gender, salary, supervisor 
number, department number, and skills. 
A developer record contains an employee number, name, date of birth, address, gender, salary, supervisor 
number, department number, and programming languages. 
 
The format of a file projects.txt contains data like 
 
1001, Computation, Microsoft, 8, 25000 
1002, Study methods, Education committee, 3, 15000 
 
Each row is a record of a project. A project record contains a project number, title, sponsor, department 
number and budget. Each field is separated by a comma (,) and a space ( ). 
 
The format of a file workson.txt contains data like 
 
800, 1001, 10 
510, 1001, 15 
 
A works-on record consists of an employee (developer) number, a project number, and the hours. 
 
Hint: You can open a text file, and then call the method 
useDelimiter(", |\r\n|\n") 
of a Scanner object before getting input data from a text file. 
 
The detailed requests 
 
 You shall update the UML class diagram by adding new classes, methods, and attributes. Please make 
sure your implementation is consistent with your UML class diagram. 
 The DEP class shall contain JavaFX components, such as Label, TextField, Button, ListView, etc. 
With the GUI, a user can interact with the applications. 
 After initialization, the applicant shows lists of department numbers, employee numbers, project 
numbers, works on information, and the pie chart of department budgets. 
 If a user clicks an item in a list, the details of the item are displayed in the text fields below that list. 
 If a user clicks a button Add, the application validates the developer and the project that selected 
from the lists. If the developer hasn’t worked on the project, then pop up a dialog to get the hours, 
and add the new works-on in the container workson and the list of workson in the GUI. 
Display the validate messages in a text field of message. 
If a user clicks a button Delete, the application pops up a confirmation dialog and deletes the 
selected works-on record if it is confirmed. **3; If a user clicks a button Save, the application saves the works-on information from the container 
workson to a text file workson.txt and display a message about how many records have been 
saved. 
**3; The system shall be able to handle the exceptions during the interaction between the user and the 
system. The exceptions may include invalid information when loading departments, employees, 
projects and workson. 
 
 
See the Processing examples below for more details. 
 
 
Testing files 
 
Download files departments.txt, employees.txt, projects.txt and workson.txt 
from the Moodle site. 
 
 
Compilation and testing 
 
Compile your program by using the javac command. 
javac --module-path "the-path-of-javafx-lib" --add-modules 
javafx.controls DEP.java 
 
Process your program by using the java command. 
java --module-path "the-path-of-javafx-lib" --add-modules 
javafx.controls DEP 
 
The path of JavaFX lib is the path where you have installed the JavaFX library (.jar files). For example, 
If a JavaFX library path is C:\MyApps\javafx-sdk-20.0.1\lib, then replace "the-path-ofjavafx-lib"
with "C:\MyApps\javafx-sdk-20.0.1\lib". 
 
Test your program for all the events. See the examples of the processing results below for more details. 
 
Note: Some important data, such as selected items, messages are emphasized in red rectangles of the screen 
shots. 
 Processing examples 
 
When the application starts, it loads data and stores them into the containers, then shows lists of 
departments, employees, projects, works-on and the pie chart of department budgets like the GUI below. 
 
If a user clicks an item of a list, the application displays the details of the item below the list.  
  
If a user clicks a button Add, the application validates the employee, project and works on information. 
 
If a developer, project and works-on are valid, the application pops a dialog to get hours, and add the new 
works-on to the list and the container workson. 
  
If a user clicks a button Delete, the application pops a dialog to confirm the deletion, then delete the 
selected works-on data from both container workson and the list of works-on. 
 If a user clicks a button Save, the application saves the works-on records into a file workson.txt and 
display message such as 7 workson records are saved. 
 
 Deliverables 
(1) UML class diagram (1 mark): Use the UMLet application tool to draw the class diagram. The class 
diagram shall 
 contains at least the classes mentioned above. 
 contains the class name, fields, and methods definitions for each class. 
 use correct and sufficient UML notations. 
 specify the associations between classes. 
 specify the multiplicities for both sides of the associations. 
 
Remember to use the CSIT213 palette! 
 
Use the option File‐>Export as… to export a class diagram into a file in BMP format. Do not delete an 
exported file. You will use it as one of the solutions for your task. 
Insert the BMP files into a Word file assignment3Report.docx. 
 
(2) Implementation (12 marks): Implement the application according to the UML class diagrams and the 
processing examples described above. The program shall 
 be consistent with the UML class diagrams. 
 follow the conventions for naming all classes, variables, and methods. 
 provide sufficient comments. 
 use proper blank spaces, indentation, and braces to make your code easy to read and understand. 
 follow the specified implementation requests. 
 be able to show the GUI and handle all events that required. 
 
(3) Compilation and test (2 marks): Compilation and test your Java program by using the command line 
interface. 
 Please carefully compile your program. Make sure your program can pass the compilation by using 
the javac command. 
 Test your program by using the java command. 
Test your program for all the activities. See the examples of the processing results above for more 
details. 
 Please do not define the package in your program (a special alert for students who use IDE to 
complete the assignment). 
Copy and paste the compilation and testing results into the Word file assignment3Report.docx. 
When ready convert the Word file assignment3Report.docx into a pdf file 
assignment3Report.pdf. 

 Submission 
Note that you have only one submission. So, make absolutely sure that you submit the correct files with the 
correct contents and correct types. No other submission is possible! 
 
Submit the files DEP.java, DataIO.java, Department.java, Employee.java, 
Project.java, WorksOn.java, and assignment3Report.pdf through Moodle in the 
following way: 
(1) Access Moodle at http://moodle.uowplatform.edu.au/ 
(2) To login use a Login link located in the right upper corner of the Web page or in the middle of the 
bottom of the Web page 
(3) When logged select a site CSIT213 (S223) Java Programming 
(4) Scroll down to a section Assignments and submission 
(5) Click on a link Assignment 3 submission 
(6) Click on the button Add Submission 
(7) Upload a file DEP.java into an area You can drag and drop files here to add 
them. You can also use a link Add… 
(8) Repeat step (7) for the files DataIO.java, Department.java, Employee.java, 
Project.java, WorksOn.java and assignment3Report.pdf. 
(9) Click on the checkbox with a text attached: By checking this box, I confirm that 
this submission is my own work, … in order to confirm the authorship of your submission 
(10) Click on a button Save changes 
 
End of specification 
 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp
















 

掃一掃在手機打開當前頁
  • 上一篇:FIT1050代做、代寫Java程序語言
  • 下一篇:菲律賓大使館簽證地址 聯(lián)系方式是多少
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養(yǎng) 十大衛(wèi)浴品牌排行 suno 豆包網(wǎng)頁版入口 wps 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产成人在线一区二区| 国产精品午夜视频| 国内偷自视频区视频综合| 国产乱子伦精品| 国产精品日韩三级| 日韩美女在线观看| 国产成人亚洲欧美| 无码人妻精品一区二区三区66| 国产一区二区三区黄| 久久久国产一区二区三区| 性欧美长视频免费观看不卡| 国产老熟妇精品观看| 国产精品色午夜在线观看| 秋霞在线观看一区二区三区| 久久精品国产精品亚洲色婷婷| 亚洲欧美日韩综合一区| 成人av电影免费| 这里只有精品66| 国语精品中文字幕| 国产精品久久中文字幕| 欧美成人精品免费| 久久深夜福利免费观看| 欧美视频第一区| 国产精品天天狠天天看| 男人舔女人下面高潮视频| 国产成人精品优优av| 欧美一区三区二区在线观看| 国产成人免费观看| 欧美精品一区免费| 久久亚洲私人国产精品va| 国产又粗又猛又爽又黄的网站| 国产精品高潮呻吟久久av黑人 | 青草热久免费精品视频| 国产不卡av在线免费观看| 日本韩国在线不卡| 国产精品视频免费观看www| 激情内射人妻1区2区3区| 久久伊人精品视频| 成人免费毛片在线观看| 涩涩日韩在线| 国产精品视频xxxx| 国产精品一区二区不卡视频| 午夜免费在线观看精品视频| 久久男人资源视频| 欧美黄网在线观看| 久久久久久91| 久久精品99久久| 欧美日韩一区二区在线免费观看| 不卡av在线播放| 99久久久精品免费观看国产| 午夜在线视频免费观看| 久久久久久久久久久av| 国产在线一区二| 偷拍盗摄高潮叫床对白清晰| 日日骚久久av| 国产美女精品视频免费观看| 日本一区二区三区精品视频| 国产精品国语对白| 91久久久一线二线三线品牌| 奇米影视亚洲狠狠色| 精品国产三级a∨在线| 91国偷自产一区二区三区的观看方式| 少妇精品久久久久久久久久| 久久精品视频99| www国产亚洲精品| 欧美精品一区二区三区在线看午夜| 久久91亚洲精品中文字幕奶水| 国产成人亚洲精品| 国产资源第一页| 水蜜桃亚洲精品| 精品免费日产一区一区三区免费 | 日韩中文字幕在线视频观看| 久久久噜噜噜久久| 国产亚洲天堂网| 日本精品久久久久影院| 欧美日韩aaaa| 久久激情五月丁香伊人| 99在线视频播放| 欧美专区在线观看| 性亚洲最疯狂xxxx高清| 欧美精品在线观看| www.色综合| 久久男人的天堂| 国产一区欧美二区三区| 日韩精品无码一区二区三区| 中文字幕免费高| 久久精品成人欧美大片古装| 91精品国产成人| 国产精品一区二区性色av| 欧美一区二视频在线免费观看| 亚洲欧美综合一区| 色综合视频网站| 国产精品免费观看在线| 久久久久久精| 久久九九国产视频| 97色伦亚洲国产| 国产精品稀缺呦系列在线| 精品日韩在线播放| 日本高清视频精品| 亚洲va久久久噜噜噜| 欧美精品久久久久久久免费观看| 国产精品区一区| 日韩中文视频免费在线观看| 久在线观看视频| 99热国产免费| 国产免费黄视频| 欧美在线一级va免费观看| 亚洲精品视频一区二区三区| 青青草视频在线视频| 久久精品这里热有精品| 亚洲在线色站| 欧美精品在线播放| 国产精品日韩二区| 久久精品国产亚洲7777| 91久久精品在线| 成人国产精品久久久| 国产毛片久久久久久国产毛片| 国产中文字幕视频在线观看| 国内自拍欧美激情| 激情深爱综合网| 欧美在线亚洲在线| 欧美综合在线观看| 欧美性在线视频| 精品国产一区二区三区久久狼黑人 | 久久精品99无色码中文字幕| 国产av人人夜夜澡人人爽麻豆| 91久久夜色精品国产网站| 97免费在线视频| 久久久一本二本三本| 国产成人精品久久亚洲高清不卡| 国产成人在线亚洲欧美| 久久99久久精品国产| 日韩有码视频在线| 国产精品入口免费视| 国产精品久久久久99| 精品国产一区二区三| 亚洲一区二区久久久久久| 亚洲精品免费在线看| 亚洲www在线| 婷婷精品国产一区二区三区日韩| 日韩在线三级| 欧美综合在线播放| 欧美亚洲激情在线| 免费国产一区| 高清一区二区三区日本久| 麻豆视频成人| 天天成人综合网| 欧美日韩精品综合| 亚洲一区免费看| 无码中文字幕色专区| 日韩精品综合在线| 美国av一区二区三区| 成人精品久久久| 91麻豆国产语对白在线观看| 国产成人高潮免费观看精品| 日韩在线播放一区| 国产精品久久久久久久久粉嫩av| 欧美巨猛xxxx猛交黑人97人| 在线国产精品网| 少妇精品久久久久久久久久| 欧美亚洲另类久久综合| 国产一区二区在线网站| 福利视频一区二区三区四区| 国产精品999999| 国产精品视频网站| 亚洲伊人婷婷| 欧美性资源免费| 99久久精品无码一区二区毛片| 国产精品2018| 国产精品久久av| 大地资源第二页在线观看高清版| 欧美专区在线视频| 国产美女久久久| 五码日韩精品一区二区三区视频| 欧在线一二三四区| 国产伦精品一区二区三区视频黑人 | 国产精品久久久久91| 亚洲午夜精品久久| 97免费视频在线| 国产在线精品一区二区三区| 免费看污污视频| 97精品免费视频| 色噜噜亚洲精品中文字幕| 国产精品久久久久久免费观看| 久久深夜福利免费观看| 黄色av网址在线播放| 99在线看视频| 国产精品美女av| 天堂va久久久噜噜噜久久va| 欧洲视频一区二区三区| 99久久久精品视频| 国产精品久久久久久久久婷婷 | 色综合久久88色综合天天提莫| 麻豆一区区三区四区产品精品蜜桃| 久久资源av| 美女视频久久黄| 欧美日韩精品免费看| 81精品国产乱码久久久久久| 国产精品久久久一区| 日韩av电影在线免费播放|