|
|
楼主 |
发表于 2007-5-9 14:03:32
|
显示全部楼层
BSA104 Business Programming& T" `' R* \, z$ q9 R1 ^7 W
Shanghai - 2007- @0 Q7 v4 G; @1 L+ @, V: Z
Assignment 2. y, Q8 C& [0 P4 |& l/ u# w
Deadline for Submission: 10:00 pm (Shanghai time), Tuesday 15th May 2007 Assessment Weighting: 20% of the total assessment for BSA104 Assignment Type: Individual Scenario: The teaching staff at a nearby university are concerned that some of their students are submitting other students‟ work. They need a simple Java program that will compare the text of two other Java programs, line by line, for equality, and then print out the results, and a recommendation. Requirements: Consider the three Java Classes: ProgramCompareMenu.java, ProgramCompare.java and AuthorisedUsers.java, available from the Assignment 2 page on Vista. You are required to perform the following tasks: The ProgramCompareMenu class: (Total maximum 20 marks available)1 ~) h+ o$ T5 L; ?5 d' F3 V: U
1. Provide a basic text-based menu interface to the ProgramCompare class so that it can be used by two staff members to determine if the two supplied Java programs are the same or similar.
8 {& B0 l% K# H: X1 Q; R: N A" eThe staff must be able to:; b4 m& z5 j: X& d. O4 M/ v
 Log on to the „system‟ using their user name, and a Personal Identification Number (PIN) which is a four digit number **.
9 L+ R6 ]0 p' w0 V1. The user should not be able to use the „system‟ until they have provided the correct user name and PIN combination. You should give them a second or third chance to get it right before shutting the „system‟ down.* F3 I/ U+ C9 t: S0 D
 The interface should provide a menu so that the staff can:
) c, K+ e# B' i' q5 Va) Enter the names of the two Java program files to be compared
: q( r" B1 E! G& Y( k$ P( x, D; I For this assignment, it will be assumed that the two Java program files are in the same folder as your program.8 I* C4 n) E2 z- b& x$ ?
** You must use the two user names and PINs provided in your individual data available from the Assignment 2 page on Vista (see requirement 5 below). The user names and PINs should be included in your code, and the output to the screen should prompt the user with the user names and passwords (for marking purposes).
" G3 f- |6 g* C6 H3 }BSA104 Business Programming – 2007: Assignment 2% `5 t) F& y5 |
Page 2 of 5
/ Y" M) o; @' h; Jb) Print out to the screen all the lines of code that are the same
- ~2 n( q) p9 J9 c1 r. N( Q Include the name of the file and the line number of the code being printed for each of the two files8 q. p+ i7 S; w* e2 x
c) Print out to the screen all the available information regarding the evaluation of the two Java program files being compared% p, G6 z: w% f8 m
 the name, username and department of the user# S( s! H- h/ ^
 the statistics of the comparison3 C; @9 r% t% O1 B
- For example: the number of lines of code checked, the number of lines the same, the number of lines that are different
+ ^5 T9 g3 I( |4 {- b the recommendation for further checking% X2 t& L% a* A! A
- For example: if more than 5 (five) lines of code are the same in each Java program file, then print a recommendation to the screen that the staff member check the files more closely' d. E( @9 w1 c) ^, P
 the names of the two files compared( E+ u( s% I; U" z$ g
d) Leave the program (exit)
. g$ u* X% h" s# d& hThe ProgramCompare class: (Total maximum 20 marks available)
+ j; i8 ]( Z5 c) z: V& i" c; G2. Provide a method/s to read in each line of code from the two files identified by the user: (assumed that the two Java program files are in the same folder as your program)/ X- }' }) k3 f% M9 V
a) provide an error message if the files are not found or there is a problem opening them
$ C3 x; S$ L& }/ L: ^b) compare each line of code
4 |" i$ f# ~8 p" y. ?0 X; a6 Nc) print out the lines that are the same
& f: J! Y! n t8 f9 B$ D+ kd) count the number of lines compared / lines the same
* q, m p5 E' h9 l& [9 @9 W. L* m- BThe AuthorisedUsers class: (Total maximum 20 marks available)7 s$ l* \" V' F' }) p% h% g
3. Provide an object that contains the name, username, PIN, and Department of the authorised users of the program (user names and PINs as provided in your individual data - see requirement 5 below)* |/ J& |. ?% r) Q( }9 ]
4. Provide methods to:8 n3 P6 R/ T$ p1 ~% }' ^
a) compare the stored username and PIN with the one entered by the user - return a value that indicates whether they match or do not match8 M8 p: \5 |2 ^' D0 t
b) return the name of the authorised user) M& Q8 F6 F; F7 |, m
c) return the name of the department of the authorised user) S- o+ y0 O' d1 ^
Individual Data (Maximum 20 marks available)2 r7 K% v- ?8 I. T0 }7 b
5. You will be given two staff member names, usernames, PINs, and department name, plus a set of two Java program files to compare using your program. You will need to log onto the BSA104 Assignment 2 page on Vista to generate your individual data and instructions for this requirement. You will need to use your University of Tasmania (UTas) student number.: g) u" I0 }& A, |+ z( F* d& B
Documentation (Maximum 10 marks available)
, k, `6 ]4 S- S- `- X6. Your program files should be fully documented, at least to the same standard as demonstrated in the textbook. This includes in-code comments, descriptions, and where appropriate, explanations for each new constructor, method and variable.; D3 X3 I4 C) ~. w+ _" U0 y0 @- c" H
BSA104 Business Programming – 2007: Assignment 2
7 u/ v: |8 }# |6 I8 a" RPage 3 of 5 |
|