Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package br.ufc.mandacaru.model;
- public class Address {
- String street;
- String zipcode;
- public Address() {
- }
- public Address(String street, String zipcode) {
- super();
- this.street = street;
- this.zipcode = zipcode;
- }
- public String getStreet() {
- return street;
- }
- public void setStreet(String street) {
- this.street = street;
- }
- public String getZipcode() {
- return zipcode;
- }
- public void setZipcode(String zipcode) {
- this.zipcode = zipcode;
- }
- @Override
- public String toString() {
- return "Address [street=" + street + ", zipcode=" + zipcode + "]";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement