Created
June 3, 2019 00:46
-
-
Save jorgecc/b2bf1948fae86a10d34c659f708f8b71 to your computer and use it in GitHub Desktop.
Customer.java
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 Customer { | |
private String age; | |
private String name; | |
private String prefix; | |
// setter and getters goes here... | |
public void showMe() { // some logic | |
System.out.println("My name is "+name); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment