Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
package model;
public class OwnedRealEstate
{
private String _name;
private int _price;
private int _downPayment;
private int _cashFlow;
public OwnedRealEstate(String name, int price, int downPayment, int cashFlow)
{
_name = name;
_price = price;
_downPayment = downPayment;
_cashFlow = cashFlow;
}
public String getName() {
return _name;
}
public int getPrice() {
return _price;
}
/**
* @return Returns a positive value for down payment!!
*/
public int getDownPayment() {
return _downPayment;
}
public int getCashFlow() {
return _cashFlow;
}
}