Reference no: EM13896121
The files must be called <LastInitialFirstInitialUnit7.java> (driver)
<LastInitialFirstInitialHouse.java> (handles house variables and methods)
Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.Only submit the .java files needed to make the program run. Do not submit the .class file or any other file.
Basic Requirements Write a driver and house class that gets input and using method call chaining creates 2 houses and outputs the results
LiFiUnit7.java
Provide a driver class that demonstrates this house class. You are to use the main method provided below exactly with the exception of the class name for house, follow the naming convention outlined above.
public static void main(String [] args)
{
Scanner stdIn = new Scanner(System.in); LiFiHouse house1, house2; //New horses
//Create house 1 using default constructor house1 = new LiFiHouse();
house1.print(); //print house 1 with default values
String street, city, state, zipCode; int number;
System.out.println("House 1 Information"); System.out.print("Please enter house number: "); number = stdIn.nextInt();
stdIn.nextLine(); System.out.print("Please enter Street: "); street = stdIn.nextLine(); System.out.print("Please enter City: "); city = stdIn.nextLine(); System.out.print("Please enter State: "); state = stdIn.nextLine();
System.out.print("Please enter ZipCode: "); zipCode = stdIn.nextLine(); System.out.println();
//use method call chaining to set values
//and print results for house 1 house1.setNumber(number).setStreet(street)
.setCity(city).setState(state).setZipCode(zipCode).print();
System.out.println("House 2 Information"); System.out.print("Please enter house number: "); number = stdIn.nextInt();
stdIn.nextLine(); System.out.print("Please enter Street: "); street = stdIn.nextLine(); System.out.print("Please enter City: "); city = stdIn.nextLine(); System.out.print("Please enter State: "); state = stdIn.nextLine();
System.out.print("Please enter ZipCode: "); zipCode = stdIn.nextLine(); System.out.println();
//create house 2 using 5 parameter constructor
house2 = new LiFiHouse(number, street, city, state, zipCode);
//print house 2 house2.print();
}
This demonstration driver does not call all accessor and mutator methods but it is normal to create them regardless of an immediate use. They may be needed in the future.
Sample output is provided below. Be sure to mimic it exactly except for values entered.
LiFiHouse.java
Write a House class called LiFiHouse.java that implements the following methods
· setNumber – receives the house number
· setStreet – receives the street name
· setCity – receives the city name
· setState – receives the state name
· setZipCode – receives the zip code
Separate accessor methods for each instance variable utilized.
Pay attention to implement method call chaining as prescribed in the main method given.
Summarize the research theory framework
: Summarize the research theory framework. List the research questions and the study's purpose.
|
Aca codes of ethics and consultation
: What resources, other than the ACA Codes of Ethics and consultation with peers, can counsellors use to resolve ethical dilemmas they encounter in their work with minors?
|
How can you ?nd the t value
: Find the t value for 5, 2.5, and 0.5% of the area within each tail for a sample size, n, that is very large or in?nite. How do these t values compare with their corresponding z values?
|
Brooks co. purchases various investments in trading
: Brooks Co. purchases various investments in trading securities at a cost of $ 66,000 on December 27, 2013. (This is its first and only purchase of such securities.) At December 31, 2013, these securities had a fair value of $ 72,000.
|
Proper coding conventions required the first letter of class
: The files must be called (driver) (handles house variables and methods) Proper coding conventions required the first letter of the class start with a capital letter
|
Is the information contained in the articles reliable?
: Is the information contained in the articles reliable? Explain
|
What does the result of part a tell us
: A random sample of 64 with a mean of 50 and a standard deviation of 20 is taken from a population of 800. Find an interval estimate for the population mean such that we are 95% con?dent that the interval includes the population mean.
|
What is the main advantage of assessing the welfare impact
: What is the main advantage of assessing the welfare impact of a merger by looking at its ‘external effect'? Explain in words the condition under which this external effect is positive.
|
Compute overall scale factors by raising the scale factor
: Finally it needs functions to return whether an animation is in progress and one to return the current step of the animation. Those functions will need to be called by the Transformation class and the Scaling class must must be modified so the the ..
|