首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代写COSC1295、代做Java设计编程
项目预算:
开发周期:
发布时间:
要求地区:
RMIT Classification: Trusted
Advanced Programming
COSC1295
Assignment 2: Data Analytics Hub
Assessment
Type
Individual assignment; no group work. Submit online via Canvas → Assignments → Assignment 2.
Marks are awarded for meeting requirements as closely as possible according to assignment
specifications and the supplied rubric. Clarifications or updates may be made via announcements.
Due Date Week 13, Friday 20 October 11:59pm. Late submission penalty will be applied unless special
consideration has been granted.
There will be 2 milestones: week 12 in-lab milestone check and week 14 post submission final
interview. You will describe the key concepts adopted in your code, your overall application design,
demonstrate code execution, and explain your code at the milestones. No extensions to the Week
12 milestone will be given unless special consideration has been granted.
Marks 45 marks out of 100 for Assignment 2
5 marks for week 12 in-lab milestone check in addition to 45 marks.
1. Overview
NOTE: Carefully read this document. In addition, regularly follow the Canvas assignment discussion board for assignment
related clarifications and discussion.
• In this assignment, you are required to work individually to develop a GUI Application, named Data Analytics
Hub, which allows userto import, analyze, and get insights of social media data. You will practice your knowledge
of object-oriented design principles, design patterns, and GUI-frontend application design. You will use Java SE
8 or later and JavaFX. A suite of suitable JUnit tests should be provided to demonstrate correct functionality.
The assignment can be seen as an extension of Assignment 1. Hence, you can re-use your code for Assignment 1 if you
wish.
Task specification
Stage 1 - Basic functional requirements.
• The application can have multiple users.
• Each user can create a profile, with a username, password (may be unencrypted), first name, and last name. The
username should be a unique identifier of the user in the application.
• Once the username and password are created, the user can log in.
• Each user has a dashboard after login. The dashboard should display a welcome message containing the user’s
full name.
• Each user can keep a collection of social media posts and analyze it. Specifically, a user can perform the following
actions:
o Edit the profile (i.e., change the first name, last name, username, and the password).
o Add a social media post to the collection. A social media post should contain ID, content, author, #likes,
#shares, and date-time (See Assignment 1 -> Task specification for more details). The user will provide
Page 2 of 4
RMIT Classification: Trusted
the details of one post. Afterwards, the post can be added to the collection. For each post, validation
should be done to ensure the post has correct format, such as #likes being a number, ID being unique,
etc.
o Retrieve a post from the collection based on post ID. The user is allowed to enter a post ID, and the
application should retrieve the corresponding post if it exists.
o Remove a post from the collection based on post ID.
o Retrieve the top N posts with the most likes, for a given user or over ALL users, and show retrieved
posts in descending order of #likes. The user is allowed to specify the value of N.
o Export a post to a file based on post ID. The user should be allowed to choose a folder for storing the
file, and specify the file name to be exported. The saved file should be in csv format.
o Log out
Stage 2 – VIP functionalities
When a new user is registered, the user is considered as a non-VIP user. Once a non-VIP user logs in, the user has
the option of upgrading to VIP user. To upgrade, the application asks if the user agrees to subscribe to the application:
The user will become a VIP user once they agree:
For simplicity, you do not need to collect payment information in this assignment. You can assume that the user
agrees by clicking “yes”. A VIP user has advanced functionalities as follows.
• Data visualization - Draw a pie chart showing the distribution of #shares. The application can display a pie chart
that illustrates the distribution of #shares by categorizing all posts into three groups: #shares ranging from 0 to
99, #shares between 100 and 999, and #shares equal or exceeding 1000. Generate a pie chart that displays the
proportions of these three categories.
• Bulk import social media posts. Import multiple social media posts from a csv file altogether. A posts.csv file is
provided for testing. This functionality should capture potential exceptions occurred during import, such as the
case where the csv file does not follow the correct format.
Once a user has become VIP, the same user should always have access to advanced functionalities when logging in.
Disclaimer: the specification in this assignment is intended to represent a simplified version of a system in real life and
thus is not meant to be a 100% accurate simulation of any real system or service that is being used commercially.
4. Assessment details
In this assignment, you will incrementally build a GUI application, named Data Analytics Hub. The assignment is
structured into 2 milestones which must be demonstrated to your lab tutor.
Milestone 1
In Milestone 1, you are expected to complete the following basic functionalities:
• Sign up
• Log in
• User profile editing
• Add a social media post to the application
• Retrieve a post from the collection based on post ID.
Milestone 2
You are expected to complete functionalities of Stage 1 and Stage 2. In addition, you are required to incorporate objectoriented concepts to design your program (including abstraction, encapsulation, inheritance, and polymorphism). You
Would you like to subscribe to the application for a monthly fee of $0?
Please log out and log in again to access VIP functionalities.
Page 3 of 4
RMIT Classification: Trusted
are required to follow MVC design pattern to connect the frontend with the backend. You are also required to use
another design patterns such as Singleton pattern, besides the MVC pattern.
5. Academic integrity and plagiarism (standard warning)
Academic integrity is about honest presentation of your academic work. It means acknowledging the work of others
while developing your own insights, knowledge and ideas. You should take extreme care that you have:
• Acknowledged words, data, diagrams, models, frameworks and/or ideas of others you have quoted (i.e. directly
copied), summarised, paraphrased, discussed or mentioned in your assessment through the appropriate
referencing methods,
• Provided a reference list of the publication details so your reader can locate the source if necessary. This includes
material taken from Internet sites.
If you do not acknowledge the sources of your material, you may be accused of plagiarism because you have passed
off the work and ideas of another person without appropriate referencing, as if they were your own.
RMIT University treats plagiarism as a very serious offence constituting misconduct. Plagiarism covers a variety of
inappropriate behaviours, including:
• Failure to properly document a source
• Copyright material from the internet or databases
• Collusion between students
For further information on our policies and procedures, please refer to https://www.rmit.edu.au/students/studentessentials/rights-and-responsibilities/academic-integrity
6. Marking Guidelines
6.1 Milestone check 1
• In-lab milestone check in week 12 (5 marks): Show a basic class design and clearly explain how the code follows
MVC; complete required functionalities and demo via code execution (see Assessment Details -> Milestone 1).
6.2 Milestone check 2 (Final milestone)
The marking guideline for Milestone check 2 is as follows.
Final submission marking guidelines:
• GUI (7/45)
• Functionality (20/45)
• Object oriented design and choice of data structures (10/45) (include a basic design diagram in your
submission)
• Source code quality (5/45)
• Regular incremental updates in Github (3/45)
GUI: The application is easy-to-navigate and consistent and responds clearly to every user action.
• Your program should include appropriate JavaFX components to make the application easy-to-navigate. For
example, each window should have a window title; menu options (if applicable) are selected from a menu bar.
• Your program should respond clearly to every user action. For example, if the user types a wrong password, the
login window should display a clear error message and ask the user to type again.
Page 4 of 4
RMIT Classification: Trusted
• Your program should provide visual consistency. Avoid using different styles and labels for similar elements on
different windows of the application.
• The UI design of your program should serve the purpose of the application.
Note marks for GUI are checked during the post-submission interview. If you do not attend the final interview, you
will be awarded ZERO marks for GUI.
Functionality: All functions required by specification are implemented correctly covering different cases that might
happen during the usage of the program.
Note marks for Functionality are checked during the post-submission interview. If you do not attend the final
interview, you will be awarded ZERO marks for Functionality.
Object oriented design and choice of data structures: Appropriate choice of data structures that serves the purpose of
the application. Class designs that adhere to the SOLID principles.
• You are required to follow MVC design pattern to connect the frontend with the backend.
• You are required to use one of design patterns such as Singleton pattern, besides the MVC pattern.
• You are required to apply SOLID principles whenever suitable in order to (1) enhance the maintainability and
extensibility of your program; (2) decrease the coupling between classes; (3) minimize the repetition of
codes/methods across classes.
• You are required to choose appropriate data structures to enhance the running efficiency of the program.
Source code quality: Adequately documented and properly indented code; appropriate class/method/variable names.
6.3 Other important notes
• You MUST use JavaFX.
• Your program should save the user profile data and allow the application to be restarted in the same state it was
in at the end of the previous execution. For example, if the program is ended and restarted, an existing user
should still be able to log in and view his/her own data collection. You may store the data in a database (using
JDBC) when the application closes and restore the data when the application starts again or in files and read
from disk on restart.
• You will need to document the code properly by following Code Conventions for the Java Programming Language
by Oracle: https://www.oracle.com/java/technologies/javase/codeconventions-introduction.html
• You MUST regularly save your code to GitHub to demonstrate regular incremental development of your code
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!