Created
March 24, 2016 15:32
-
-
Save dalmat36/0bd6ca92d2e0ff2d14c7 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
package testing | |
/** | |
* Created by dalesiom on 3/24/2016. | |
*/ | |
class People { | |
String person1; | |
String person2; | |
String person3; | |
String getPerson1() { | |
return person1 | |
} | |
void setPerson1(String person1) { | |
this.person1 = person1 | |
} | |
String getPerson2() { | |
return person2 | |
} | |
void setPerson2(String person2) { | |
this.person2 = person2 | |
} | |
String getPerson3() { | |
return person3 | |
} | |
void setPerson3(String person3) { | |
this.person3 = person3 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment