|
|
楼主 |
发表于 2007-5-9 14:03:32
|
显示全部楼层
BSA104 Business Programming8 b7 _4 K- `1 H z4 Q& Z, S( V* Y# J
Shanghai - 2007
) b; Q/ N$ n6 M; S& h% uAssignment 2
$ a+ [2 j- {0 q% S6 f1 h# HDeadline 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)* V; W5 e" t, V5 b
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.
) V8 E5 G% X5 F# F* y$ ]The staff must be able to:
9 a8 s9 }$ h3 K Log on to the „system‟ using their user name, and a Personal Identification Number (PIN) which is a four digit number **.
$ T s0 q% N4 z* K& f1. 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.! O, k: b/ J$ Q2 b; u+ k# ~3 O
 The interface should provide a menu so that the staff can:8 E' E+ Z' N2 Q+ V! c
a) Enter the names of the two Java program files to be compared
' y: m" t c; n% N- R5 B For this assignment, it will be assumed that the two Java program files are in the same folder as your program.
9 j% D7 U1 o- D$ W** 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)., q: E" W) V h
BSA104 Business Programming – 2007: Assignment 2. w8 T# }! u# J* }6 R2 l9 B
Page 2 of 5
! s, n/ A! \* bb) Print out to the screen all the lines of code that are the same
# T* I4 T' R4 c0 ~% y5 R2 u Include the name of the file and the line number of the code being printed for each of the two files& Z2 T3 i! @3 O7 o4 `
c) Print out to the screen all the available information regarding the evaluation of the two Java program files being compared3 i! m" T" g8 Q' j; e
 the name, username and department of the user
9 H0 x& u) H5 i6 k% r the statistics of the comparison
2 V, C- i! z, C5 l2 @- For example: the number of lines of code checked, the number of lines the same, the number of lines that are different* v# _0 v `- g0 \1 k
 the recommendation for further checking$ ?& H# ^6 b! n- R, t
- 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; k! F6 [. Y7 b) {9 V# e
 the names of the two files compared
; k7 {2 v" i0 F1 n6 ^- Cd) Leave the program (exit)
7 m3 [- _1 }5 A2 V9 Y/ X3 k/ KThe ProgramCompare class: (Total maximum 20 marks available)* d9 V% G1 B9 Z
2. 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). ]. e4 ~) t1 h0 I+ `' W, }
a) provide an error message if the files are not found or there is a problem opening them2 M, _7 I$ i$ k& F) g
b) compare each line of code
$ S( M! p' B4 K) v9 R. T" S9 Wc) print out the lines that are the same
}, T9 H& o4 r _d) count the number of lines compared / lines the same1 D; D/ f$ X3 t' f: @$ Y9 Z
The AuthorisedUsers class: (Total maximum 20 marks available)
1 f+ V) A: \& t8 Y( w2 H3. 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)8 ]1 A' i2 _# W
4. Provide methods to:& ?5 Y: n# x3 _* C
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 match) }6 y% a0 L/ k5 J/ R Q: S
b) return the name of the authorised user' A! i) `" `. a* H% J9 x
c) return the name of the department of the authorised user6 K- J0 y! C @. q% x/ b L
Individual Data (Maximum 20 marks available)0 u5 S; ]' Y2 _- b) z
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./ ~$ u: |; n; \: {/ g: I. ?/ K
Documentation (Maximum 10 marks available)0 ~3 X; E& `! y0 j- Q) E0 L
6. 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.( m" F" v1 \* j9 t
BSA104 Business Programming – 2007: Assignment 20 o7 _$ g# q0 V I! K9 l
Page 3 of 5 |
|