99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

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

時間:2024-09-18  來源:合肥網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

掃一掃在手機打開當前頁
  • 上一篇:(大觀·可惟為)第9屆中國品牌價值100強榜”暨“世界品牌價值900強榜”在北京中國國際服務貿易交易會正式發布
  • 下一篇:代寫INFO20003 S2 2024 代做Lovely App for Requesting 
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          亚洲国产精品美女| 欧美成人一区二区三区| 亚洲第一区在线| 欧美男人的天堂| 欧美自拍偷拍| 夜夜嗨一区二区| 伊人久久亚洲美女图片| 国产精品日日摸夜夜添夜夜av| 久久综合精品一区| 亚洲欧美久久久| 亚洲精品少妇网址| 极品少妇一区二区| 国产精品一级二级三级| 欧美日韩精品免费| 欧美激情免费在线| 久久久久国产精品人| 午夜精品福利在线观看| 中文av一区特黄| 亚洲精品欧美精品| 亚洲第一区中文99精品| 国产日韩欧美综合一区| 国产精品白丝黑袜喷水久久久| 免费亚洲视频| 久久全国免费视频| 久久久久国产一区二区| 欧美一区二区三区在线观看视频| 9久re热视频在线精品| 亚洲成色精品| 在线观看欧美黄色| 亚洲高清视频一区| 亚洲激情偷拍| 一区二区三区国产在线| 亚洲美女av电影| 亚洲毛片网站| 一本大道久久精品懂色aⅴ| 亚洲精品美女| 亚洲国产欧美一区| 亚洲经典一区| 亚洲日本中文字幕免费在线不卡| 亚洲国产精品久久人人爱蜜臀 | 午夜欧美不卡精品aaaaa| 亚洲欧美日韩一区二区三区在线观看 | 亚洲在线观看视频| 午夜电影亚洲| 久久久噜噜噜久久久| 美乳少妇欧美精品| 欧美激情一区二区久久久| 欧美美女福利视频| 欧美日韩一二区| 欧美久久视频| 欧美午夜一区二区福利视频| 国产精品伦子伦免费视频| 国产精品素人视频| 国产综合色在线| 亚洲激情视频| 亚洲一区二区三区免费在线观看 | 久久久久久亚洲精品中文字幕 | 欧美成人久久| 欧美日韩在线播放一区| 国产一区白浆| 日韩视频一区二区三区在线播放| 亚洲网址在线| 久久天堂国产精品| 欧美精品在线视频| 国产日韩亚洲欧美| 亚洲破处大片| 欧美专区在线观看一区| 欧美aⅴ99久久黑人专区| 国产精品乱看| 日韩视频免费观看高清在线视频| 午夜精彩国产免费不卡不顿大片| 久久亚洲私人国产精品va媚药| 欧美午夜精品理论片a级按摩| 国产午夜亚洲精品不卡| 一区二区三区www| 美女脱光内衣内裤视频久久影院 | 猛干欧美女孩| 国产精品推荐精品| 99国产精品| 久久婷婷激情| 国产精品尤物福利片在线观看| 亚洲成人原创| 久久精品盗摄| 国产精品免费观看在线| 亚洲日韩欧美一区二区在线| 欧美在线视频免费观看| 国产精品99一区| 亚洲精品在线免费| 欧美国产成人精品| 亚洲二区在线视频| 久久亚洲高清| 国产一级一区二区| 午夜电影亚洲| 国产精品萝li| 一区二区日韩伦理片| 欧美精品1区| 亚洲精品乱码久久久久久蜜桃91| 久久影视三级福利片| 国产亚洲欧美中文| 久久久久久久综合日本| 国内精品伊人久久久久av一坑| 午夜伦理片一区| 国产欧美日韩伦理| 久久精品99国产精品酒店日本| 国产精品综合视频| 久久黄金**| 伊人婷婷欧美激情| 欧美大片一区二区| 日韩亚洲一区在线播放| 欧美日韩中文字幕日韩欧美| av成人免费在线| 国产精品乱子久久久久| 亚洲小视频在线| 国产久一道中文一区| 久久久福利视频| 亚洲国产激情| 国产精品theporn| 午夜日韩福利| 国产一区二区无遮挡| 麻豆国产精品一区二区三区| 亚洲美女黄网| 国产精品免费视频xxxx| 久久精品国产免费| 亚洲人成网站色ww在线| 国产精品久久久久久久久久妞妞| 亚洲一区二区三区在线播放| 国产区欧美区日韩区| 欧美成年网站| 午夜精品影院| 亚洲三级视频| 国产欧美日韩亚洲| 欧美精品乱人伦久久久久久 | 欧美视频国产精品| 久久不射网站| 亚洲天堂久久| 亚洲国产欧美一区二区三区同亚洲| 欧美日韩调教| 美女网站在线免费欧美精品| 亚洲一区美女视频在线观看免费| 尤物精品在线| 国产精品亚洲а∨天堂免在线| 免费成人av| 久久gogo国模裸体人体| 亚洲精品人人| 国产欧美精品日韩区二区麻豆天美| 麻豆乱码国产一区二区三区| 午夜精品久久久久久久99水蜜桃| 亚洲第一区色| 国产一区二区三区网站| 欧美日韩精品在线视频| 欧美1区3d| 麻豆成人在线| 欧美一区二区三区在线观看| 亚洲午夜在线观看| 亚洲精选大片| 亚洲高清视频在线观看| 国产亚洲欧洲997久久综合| 国产精品jizz在线观看美国| 欧美成年人视频| 久久综合国产精品台湾中文娱乐网| 欧美亚洲视频| 亚洲欧美一区二区激情| 这里只有视频精品| 99在线热播精品免费| 亚洲美女视频在线免费观看| 亚洲福利小视频| 在线看视频不卡| 黑人极品videos精品欧美裸| 国产亚洲视频在线观看| 国产精品亚洲欧美| 国产日韩欧美日韩| 国产色综合天天综合网| 国产一区二区精品在线观看| 国产精品国产三级国产专播品爱网 | 亚洲精品乱码久久久久久蜜桃91 | 蜜臀99久久精品久久久久久软件| 久久九九全国免费精品观看| 性8sex亚洲区入口| 久久精品免费播放| 噜噜噜躁狠狠躁狠狠精品视频| 久久女同互慰一区二区三区| 久久精品国产清高在天天线| 欧美一二三区在线观看| 久久久噜噜噜久久人人看| 久久久国产一区二区| 久久亚洲精品一区二区| 欧美91大片| 欧美日韩一区二| 国产欧美一区二区色老头 | 国产一级一区二区| 在线精品观看| 亚洲精品视频啊美女在线直播| 亚洲精品1234| 亚洲欧美日本伦理| 久久免费视频这里只有精品| 欧美成人午夜| 国产精品美女久久久免费| 一区二区三区在线看| 亚洲毛片av| 久久av资源网站|