Created
June 8, 2017 12:57
-
-
Save vyo/4ee1ee14be8b1a3549ea88cde371450f to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Echo { | |
private String echo; | |
public Echo(String echo) { | |
this.echo = echo; | |
} | |
public String getEcho() { | |
return echo; | |
} | |
public void setEcho(String echo) { | |
this.echo = echo; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment