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

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

代寫159.251 Software Design and Construction
代寫159.251 Software Design and Construction

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


 
Massey University
159.251 - Software Design and Construction
Assignment 1
Deadline and Late Submission Penalties
You must submit your final work using the stream submission system no later than 9 October
2024 at 11.59 pm. The penalty is 20% deducted from the total possible mark for every day
delay in submission (one day late – out of 80%, two days late then out of 60% … etc.).
You are expected to manage your source code and other deliverables using version control.
“The Cat Ate My Source Code” is not a valid excuse for a late submission.
Contribution to Final Grade of the Course: 22%
Please read carefully, as there are many parts that you should be aware of.
Overview
You are to work in self-selected pairs (i.e., select your teammate) to create the program
defined below. You will need to use git to manage source code contribution and integration
between the two members. All project issues and changes should be tracked using an issue
tracker (set up within your repository).
Note: Both group members will receive the same mark unless it is clear that the work is
predominantly that of a single person. These will be sorted out on a case-by-case basis. The
partition of the work is entirely up to you and your project partner.
Part of this assignment is to become familiar with using git for version control. You must use
GitHub for this assignment, and the repository must be private.
IMPORTANT: use the following conventional name for your repository: 25**Assignment**
2024-FirstName**FirstName2. For example, if the first student is Sarah and the second
student is Li, then the repository name should be (25**Assignment**2024-Sarah-Li).After submitting your assignment on Stream, you must send an invitation to your GitHub
repository to one of our markers. After the submission is completed, one of the markers
will contact you to request access to your repository.
Tools Required
● IDE independent: You may develop this in any IDE or code editor you like! The tools
included here are available for major IDEs and Maven dependencies.
● Git and GitHub(for version control)
● GitHub Issue Tracker (for log changes and bugs)
● Maven (for dependency management and process automation)
● A code metrics tool
● Docker for packaging
● PMD (for code quality check)
● other libraries to perform the different functionalities (you are free to search and use
any library that will help in implementing any of the functionalities).
Tasks
1) Developing a text editor program using Java – see details below.
2) Source code and version control:
a) create and maintain a git repository on your local machine for your source code
and on a remote repository to provide a central server accessible to both
members and also accessible for marking.
b) keep an audit trail of commits in the git repository. These will inform part of
the marking.
c) make sure that you actively (almost daily) use git features such as branching
and merging (not only on the last day before submission!).
d) write your configurations in YAML file. You must submit at least one
configuration file that works with the text editor. This could be a file with the
default parameters for the text editor, such as the default text format or default
font colour.
3) Log changes and bugs: keep track of changes and issues – use an issue tracker as
part of your version control. Please use the same issue tracker that is provided by your
Git project hosting site (i.e., the “issues” feature in GitHub). This has to be actively
used!
4) Automation: automate your process so it is easier to load files and generate reports.
Use Maven to declare all dependencies. If you are using any external libraries, do not
include any jar files with your submission but add them as Maven dependencies! Also,
don’t try to change your Maven files into a different format. The pom file should be an
XML file.
Build those Maven build tasks in your Continuous Integration (CI) pipeline using GitHub
Actions. Make sure that the configuration (YAML) file is correctly added.
5) Readability: ensure you write clean code, correctly handle exceptions, and add
comments to explain your code. Make your code “human-readable!”.
6) Quality: check the quality of your code and outputs
2a) use code quality tools to report metrics data of your program. The metrics report
generated from your code should be submitted. The process should be
automated and included in your Maven dependencies (see Section 2 below).
b) (Bonus) Write unit tests using JUnit to test (at least) the following functionalities:
open, save and search (see details below).
7) Deployment: package your project and deploy it into a Docket container (a Windows
or Linux container). This must allow the markers to run the Maven project from the
Docker container (without the need to install or configure the environment). Make sure
to include your Docker file with your project, and to include details on how to load and
run your container in the README file.
Make your own text editor!
1. The Text Editor
Your program is basically a standard text editor (or text processor) – something similar to
Notepad, Atom, or Geany. The editor should allow you to write text on it using standard text
encoding formats (i.e., ASCII/UTF-8). You should develop this program in Java. Note: a
standard text file (mostly) does not need any additional metadata files to assist the reader in
interpretation,
The main functionalities of the text editor are:
- Full GUI access to the application
- Create a menu of options at the top of the editor, similar to the following
The menu should (at least) include the following sub-menus: File, Search, View, and Help
- Implement the following functionalities:
o New function: to create a new (fresh) window.
o Open function: to read other text files (just standard .txt files). This should
allow users to navigate the file system to select\search for a file.
o The ability to read OpenDocument Text (.odt) files. This is part of the Open
function.
o Save function: save text output into .txt file format. This should allow users to
navigate the file system to save the file in a selected drive/location.
o Search: search for text within the screen (this will be tested based on a single
word)
o Exit: to quit the program – close all windows.
o Select text, Copy, Paste, and Cut (SCPC) capabilities.
o Time and Date (T&D): retrieve the current time and data from the OS and
place it at the top of the editor's page.
o About: display the names of both team members and a brief message in a
popup message box.
o Print function: allow your editor to print text by connecting it to the local printer
in your machine (similar to any other text editor you have used).
3Harder functions
● ability to read source code files such as .java, .py, .cpp or similar. different
syntax should be shown in different colours. For example:
● reading and displaying other file formats beyond txt and source code files:
mainly, Rich Text Format (RTF) and OpenDocument Text (ODT) format.
Hint: you can use an external library to do so.
● include a PDF conversion function in your editor, so the file can be saved in
PDF format (for standard text files). Use an external library for this, such as
Apache PDFBox.
Note: There is no specific requirement regarding which GUI library you should use, but try to
make your program as cool as possible!
2. Code Quality and Management
Once development is done, you must report metrics data using a metrics tool. You may use
a software metrics tool (see some examples above). Code quality report from PMD should
also be submitted with your assignment.
a) generate a metrics data report from any software metrics tool (see below for the
specific metrics) and add the report file (.txt or html) to $project$/reports/metrics
b) create a new maven goal called “pmd” that should generate a metrics report using
PMD (see below for the specific metrics) and add the report files to
$project$/reports/pmd.
● Code Size (per class): Lines of Code (LOC) and Number of Methods (NOM)
● Code Complexity: Cyclomatic Complexity and code coupling metrics
(Coupling Between Objects (CBO) OR Efferent Coupling).
● Code Quality Report from PMD. Use only Java Basic rules such as Naming
Convention for classes and variables (extract the full report and include it with
your submission).
Submitting your assignment
45
Submission must be completed on Stream using the Assignment submission site.
Share your program on your private GitHub repository with us by sending a share
invitation to the user. This is to track commits on your Git repository.
Include a README file in the top level of the project
The Readme.md is a file with a Markdown syntax (this should be correctly formatted
as a markdown) that contains:
1. the names & IDs of BOTH MEMBERS of the group.
2. clear instructions on how to run your program and if there are any other
directories, what they contain.
3. for each student, a couple of the most significant git commit IDs show the
work of each individual member of the group.
4. a link to your private GitHub repository. A marker will contact you after
submission to request access to the repository. Note: there will be a penalty if
the repository is found to be public.
Who submits what?
Only one member of a group should submit a complete project, the other just submit
the Readme.md file:
● member A: submit (through Stream) a single compressed (e.g., zip or tar) file
that contains the assignment (Maven project files and other configuration
filess without the /target directory)
o name the compressed file with both members’
FirstName_LastName and ID numbers (e.g. Xiaofeng_Liu-87878787-
Susan_Jones-01010101.zip)
● member B: submit just the README.md file containing your name and that of
the partner who is submitting the zip/tar file. This is so Stream knows that
you've submitted something.
Markdown Quick guide
https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing
and-formatting-on-github/basic-writing-and-formatting-syntax6
Assessment

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:WORK3203代做、代寫 c++,java 編程設(shè)計
  • 下一篇:代寫INFO20003 S2 2024 代做Lovely App for Requesting 
  • 無相關(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怎么修改定
  • 短信驗證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美精品一区免费| 欧美亚洲另类久久综合| 热99久久精品| 国产成人综合av| 亚洲美女网站18| 福利视频一二区| 精品免费二区三区三区高中清不卡| 欧美一区二区福利| 久久久人成影片一区二区三区 | 亚洲精品乱码视频| 国产精品一区二区三区观看| 精品国产综合久久| 国产一区二区在线免费视频 | 国产精品三级一区二区| 日韩精品一区二区三区外面| 国产成人精品免费看在线播放 | 国内自拍在线观看| 国产成人鲁鲁免费视频a| 欧美有码在线视频| 久久久久久有精品国产| 日韩高清专区| 日韩中文字幕av| 欧美日韩国产三区| 国产精品视频专区| 国内精品视频一区| 国产精品久久久久7777| 国产在线98福利播放视频| 国产精品久久久久久久9999| 国产尤物91| 中文字幕剧情在线观看一区| 91精品国产99久久久久久| 亚洲第一综合网站| 91精品久久久久久久久中文字幕 | 日韩av成人在线观看| 国产福利视频一区二区| 日韩免费av片在线观看| 久久久999成人| 蜜桃久久影院| 色在人av网站天堂精品| 91免费视频网站在线观看| 色欲av无码一区二区人妻| 久久国产成人精品国产成人亚洲| 欧美亚洲国产日韩2020| 久久亚洲精品国产亚洲老地址| 国产主播在线一区| 中文字幕欧美日韩一区二区| 91精品免费看| 欧洲国产精品| 久久99青青精品免费观看| 国产精品一区专区欧美日韩| 无码人妻h动漫| 国产精品丝袜高跟| 国产综合免费视频| 一区二区在线高清视频| 久久www免费人成精品| 欧美大香线蕉线伊人久久| 欧美激情综合色综合啪啪五月| 91久久精品www人人做人人爽| 欧美影院在线播放| 国产精品国产三级国产专区51 | 亚洲欧美国产一区二区| 久久久久久久有限公司| 免费毛片一区二区三区久久久| 亚洲综合视频一区| 日韩中文在线视频| 国产精品亚洲综合| 久久青草精品视频免费观看| 欧美日韩一区综合| 永久免费看av| 九一国产精品视频| 国产日韩一区欧美| 日本久久久久久久久| 欧美日韩成人在线播放| 久久久久久久国产精品视频| 国产日韩视频在线观看| 日韩午夜视频在线观看| 欧美激情极品视频| 日韩在线视频免费观看| 国产伦精品一区二区三区照片 | 91精品国产综合久久香蕉的用户体验| 欧美成ee人免费视频| 亚洲va码欧洲m码| 国产精品成人av在线| aaa级精品久久久国产片| 欧美日韩黄色一级片| 亚洲精品永久www嫩草| 国产精品福利片| 国产白丝袜美女久久久久| 国产欧美精品日韩| 精品日产一区2区三区黄免费| 欧美一区二区三区在线免费观看| 欧美精品在线免费| 久久久精品国产网站| 久久偷看各类wc女厕嘘嘘偷窃| 国产亚洲黄色片| 欧美 日韩 国产 激情| 日本一区免费| 亚洲国产一区二区精品视频| 国产精品久久成人免费观看| 日韩有码在线电影| 久久久综合亚洲91久久98| 97免费视频观看| 成人中文字幕在线播放| 国产日本欧美在线| 免费精品视频一区| 欧美精品自拍视频| 欧洲精品在线视频| 日韩精品在线中文字幕| 日本免费高清一区二区| 亚洲一区二区三区精品视频| 亚洲最大福利网站| 一女被多男玩喷潮视频| 欧美激情国产日韩精品一区18| 久久视频在线免费观看| 久久精品久久久久久国产 免费| 日韩有码片在线观看| 久久久久久久免费| 久久天天东北熟女毛茸茸| 91精品国产综合久久久久久蜜臀 | 欧美在线观看黄| 热草久综合在线| 青青在线视频免费| 秋霞毛片久久久久久久久| 日本视频精品一区| 日本精品一区二区三区四区 | 伊人久久99| 亚洲高潮无码久久| 色噜噜狠狠一区二区三区| 色就是色欧美| 日本韩国欧美精品大片卡二| 日韩欧美亚洲区| 欧美在线日韩精品| 欧美大香线蕉线伊人久久国产精品| 欧美激情 国产精品| 国产在线精品二区| 国产免费xxx| 国产精品一区二区a| 不卡一区二区三区四区五区| 91精品久久久久久久久久久| 91精品国产综合久久香蕉的用户体验 | 日韩免费在线视频| 青青a在线精品免费观看| 欧美在线视频观看| 黄色大片在线免费看| 国产青青在线视频| 福利视频久久| 国产精品91在线| 精品国产欧美一区二区五十路 | 国产成人综合久久| 国产精品无码乱伦| 色综合久久88色综合天天看泰| 在线视频91| 日韩网址在线观看| 免费看a级黄色片| 成人免费在线小视频| 国产大尺度在线观看| 国产精品日日做人人爱| 国产精品激情自拍| 一本色道婷婷久久欧美| 日本不卡免费高清视频| 免费特级黄色片| 97免费视频观看| 久久久精品久久久久| 国产精品久久7| 亚洲精品国产精品国自产| 欧美在线观看视频| 国产日韩精品入口| 久久青草福利网站| 麻豆国产va免费精品高清在线| 动漫3d精品一区二区三区| 欧美精彩一区二区三区| www国产免费| 久久久精品久久久| 亚洲色图都市激情| 黄色特一级视频| 97碰碰碰免费色视频| 国产精品免费福利| 亚洲欧美日韩精品综合在线观看| 日韩精品一区二区三区色欲av| 国产欧美一区二区三区久久人妖 | 国产精品狠色婷| 日本欧美一二三区| 国产精品一区二区三区四区五区 | 日韩在线观看你懂的| 久久av在线播放| 日韩视频 中文字幕| 国产精品一区二区三区久久 | 国产又大又长又粗又黄| 久久精品无码中文字幕| 一区二区三区国| 韩国日本不卡在线| 久久久久中文字幕| 亚洲欧洲日本国产| 国产在线观看欧美| www.日韩.com| 日韩尤物视频 | 欧美日韩国产精品一区二区 | 国产香蕉一区二区三区| 久草视频国产在线| 亚洲中文字幕无码不卡电影|