Created
November 1, 2018 20:16
-
-
Save tawrahim/cd9dd2d29e6eeb283c51e39a95347988 to your computer and use it in GitHub Desktop.
Ziran
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SavedAddress { | |
private String label; | |
private String address; | |
public SavedAddress(String label, String address) { | |
this.label = label; | |
this.address = address; | |
} | |
public void setLabel(String label) { | |
this.label = label; | |
} | |
public void setAddress(String address) { | |
this.address = address; | |
} | |
public String getLabel() { | |
return this.label; | |
} | |
public String gtAddress() { | |
return this.address; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment