OpenDataPhillyFinal / src / edu / upenn / cit594 / util / Property.java
Property.java
Raw
package edu.upenn.cit594.util;

public class Property {
	
	private int zipCode;
	private double totalLivableArea;
	private double marketValue;
	
	public Property(int zipCode, double totalLivableArea, double marketValue) {
		this.zipCode = zipCode;
		this.totalLivableArea = totalLivableArea;
		this.marketValue = marketValue;
	}

	public int getZipCode() {
		return zipCode;
	}
	public void setZipCode(int zipCode) {
		this.zipCode = zipCode;
	}
	public double getTotalLivableArea() {
		return totalLivableArea;
	}
	public void setTotalLivableArea(double totalLivableArea) {
		this.totalLivableArea = totalLivableArea;
	}
	public double getMarketValue() {
		return this.marketValue;
	}
	public void setMarketValue(double marketValue) {
		this.marketValue = marketValue;
	}
	

}