Create a new project in eclipse , JAVA Programming

Assignment Help:

Task 1

Create a new project in Eclipse called Assignment 1.

Within this project create a package called task01.

1/ Download the class Date (you must use this class - not the ones in the SDK) from Moodle and add it to task01. This class has not been commented. You are required to add appropriate comments to this class.

In your report, answer the following:

Provide a class diagram for this class.
Look up the class Calendar in the Java API. What methods of the Calendar class are being used in the Date class?
This will be a little research task. Write about half a page on "static fields and methods". Include in your response answers to the following. What is their purpose? How do they differ from "instance methods"? How are static methods invoked? Which of Calendar's fields are being accessed in the Date class? (Note - your answer to this MUST be written in your own words).

2/ Create a class called Address using the following class diagram as a guide.

Address

String street

String city

String postcode

String country

void display ( )

Your class should also include appropriate get and set methods. Furthermore, provide two constructors

A default constructor which assigns each instance variable a default value. For example, you might assign the String "" to street.
A constructor with three String parameters which assign values to each instance variable.

The method display ( ) should display this description. An example of an Address might be "12 Ballarat St" (street), "Bendigo" (city), "3353" (postcode), "Australia" (country). Thus the description might be

12 Ballarat St,

Bendigo, 3353

Australia

Ensure your class (and all classes that you author) are appropriately commented.

2/ Create a class called Person (class diagram below)

Person

String name

Address address

Date dob

String toString ()

The field, name, is the Person's first name (eg "Fred", "Sue", "Rajiv" etc). We'll only use first names for the sake of simplicity.

The field, address, is the Person's address (you've already created the Address class).

The field, dob, is the Person's date of birth. You must use the Date class you have downloaded from Moodle (not one supplied by the SDK).

Again include appropriate get and set methods. Furthermore include a default constructor and a constructor which will initialise the fields through parameters.

3/ Download the class Test01 from Moodle. This class contains the main method and some test code for the Address and Date classes. This testing is not exhaustive (it doesn't test each of the methods in these classes). However, you can use the testDate and testAddress methods to give yourself an idea of whether you are on the right track with these classes (you will have to do some uncommenting in the main method).

The testPerson method has no code in it as yet. Provide code in this method that will exhaustively test the following methods of your Person class

getDob
setAddress
toString

Task 2
Create a second package, called task02, within the project Assignment 1.

1/ Create a new class called SavingsAccount (class diagram follows)

SavingsAccount

String accountNumber

double balance

void deposit (double )

bool withdraw (double)

void display ( )

The field, accountNumber, is a unique identification number for each SavingsAccount object (eg "M1234").

The field, balance, is the amount of savings in that particular account. The balance is set to zero when a SavingsAccount object is created. The balance is never allowed to go below zero.

This object will require a getter and setter for accountNumber but not for balance.

It should have a single constructor which sets the accountNumber. We won't allow "unknown" account numbers. The balance will be set to zero in this constructor.

The method, deposit, will add the value in the parameter to the balance.

The method, withdraw, will succeed only if there are sufficient funds in the account. If there are, then balance is updated and true is returned , otherwise the balance remains unchanged and false is returned.

Supply an appropriate display ( ) methods.

2/ Create a new class called Customer that extends the Person from task01. Do not copy the class Person to the new package. Import it from the package.

Customer

Vector accounts

void addAccount (SavingsAccount)

bool deleteAccount (SavingsAccount)

bool findAccount (SavingsAccount)

void displayAllAccounts ( )

void display ( )

A Customer can have any number of accounts (including zero).

Customer requires the default constructor. It requires no get and set methods.

There are three methods to add, find and delete accounts. We will assume that addAccount always succeeds. However, the find and delete methods will fail if the account does not exist. Thus they will return true if the objects exist and false otherwise.

The method displayAllAccounts will loop through the Vector and display the details of each of the Customer's accounts.

The method display ( ) will display all of the customer's details (eg name, address etc) as well as the details of his/her accounts.

3/ Create a class called Bank (class diagram follows)

Bank

Vector customers

Address address

String name

void addCustomer ( Customer)

bool deleteCustomer (Customer )

bool findCustomer ( Customer)

void displayAllCustomers ( )

void display ( )

Provide get and set methods for address and name. Provide at least two constructors.

The Address class should be imported from task01 - it should not be copied into the task02 package.

The discussion for the methods is very similar to that of the Customer class and won't be repeated here.

4/ Download the Test02 class from Moodle. This class contains a test method for the Customer class. Provide exhaustive test code for both the SavingsAccount and Bank classes in the appropriate test methods. You will be marked on how thoughtful (careful) you are with your testing.

Task 3

Create a new package called Task03. Copy (don't import this time - you'll be making modifications to them) the classes Bank, SavingsAccount and Customer into this new package.

1/ Consider a class called CreditAccount with the following class diagram

CreditAccount

String accountNumber

double balance

double creditLimit

void deposit (double )

bool withdraw (double)

void display ( )

This is a second kind of account that a Customer can have. It differs from the SavingsAccount in that the Customer is allowed to have a creditLimit which means that his/her balance can be less than zero. If the creditLimit is $1000 then the customer can withdraw up to $1000 more than they have in their account. This will mean that the withdraw method will need to be implemented differently to SavingsAccount.

A Customer is allowed to have any number of accounts (either Savings or Credit). We can add these objects to the accounts Vector in the Customer class. However, we will find a lot of problems when we try to loop through them and perform operations them.

In your report, discuss an abstract class called Account which both SavingsAccount and CreditAccount will extend. Explain how such a class might be used to solve the problems outlined about. Discuss the

Instance variables
Concrete methods
Abstract methods

which would belong to the Account class.

Finally, discuss the changes that you will need to make to the Customer and Bank classes to make the new arrangement work correctly.

2/ Implement the changes you have outlined in part 1. (Note you must use inheritance properties. Do not use any of the Reflection classes to solve these problems).

3/ Add an abstract method to Account called interest ( ). This method will need to be implemented differently in the subclasses.

In SavingsAccount - add 1% to the balance.
In CreditAccount - if the balance is positive add 2%. If negative charge 10% as interest.

In the Bank class add a method called updateInterest ( ) which will loop through each of the Customer objects in its customers Vector. For each customer, loop through all accounts and update the interest appropriately.

4/ Create a Test03 class with appropriate test methods. You will be marked upon how thoughtful (and careful) you are with your testing.


Related Discussions:- Create a new project in eclipse

Inheritance and interfaces to construct type hierarchies, Objectives 1. To...

Objectives 1. To help you become comfortable with using inheritance and interfaces to construct type hierarchies. 2. To familiarize you with programming from specifications. A

Differentiate between time slicing and preemptive scheduling, What is diffe...

What is difference between time slicing and preemptive scheduling? Differences between preemptive and time scheduling are: In case of Preemptive scheduling the highest prior

What do you mean by java virtual machine?, Question 1 What do you mean by ...

Question 1 What do you mean by Java Virtual Machine? Question 2 Write a simple Java program to display a string message and explain the steps of Compilation and execution in Jav

What is scope of variable in java, What is Scope of Variable ? Space in...

What is Scope of Variable ? Space in that a variable is effective is called as the scope of a variable. In other words we can say area where that variable is available for the

The software or script to scan automotive ads, The software or script to sc...

The software or script to scan automotive ads Project Description: Looking for a company that made the script or application to search through pages of listings of automotive

Need simple desktop software, Need Simple Desktop Software I am seeking ...

Need Simple Desktop Software I am seeking a software that can do the subsequent: 1. Check position for a URL in Google, Yahoo, Bing. 2. Check position for a YouTube video

Jdbc, creating connection which will authenciate for a password

creating connection which will authenciate for a password

Mention five applications of artificial intelligent system, Mention any fiv...

Mention any five applications of Artificial Intelligent System? 1)Medical Diagnosis 2)Robots 3) Games 4) Business intelligence 5)Image Recognition.

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd