From 5a6693057c3bb371104a98792005f09773c081f8 Mon Sep 17 00:00:00 2001 From: Russell Furnas Kaup <russfk@gmail.com> Date: Thu, 12 Feb 2015 11:19:14 -0600 Subject: [PATCH] Address updated --- Assignment2/src/assignment2/Address.java | 48 +++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/Assignment2/src/assignment2/Address.java b/Assignment2/src/assignment2/Address.java index 6f6cd4e..f97edb1 100644 --- a/Assignment2/src/assignment2/Address.java +++ b/Assignment2/src/assignment2/Address.java @@ -8,6 +8,52 @@ public class Address { String country; Address(String street, String city, String state, String zip, String country) { - + this.street = street; + this.city = city; + this.state = state; + this.zip = zip; + this.country = country; } + + public String getStreet() { + return street; + } + + public void setStreet(String street) { + this.street = street; + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city; + } + + public String getState() { + return state; + } + + public void setState(String state) { + this.state = state; + } + + public String getZip() { + return zip; + } + + public void setZip(String zip) { + this.zip = zip; + } + + public String getCountry() { + return country; + } + + public void setCountry(String country) { + this.country = country; + } + + } \ No newline at end of file -- GitLab