Skip to content

Instantly share code, notes, and snippets.

@jorgecc
Created June 3, 2019 00:46
Show Gist options
  • Save jorgecc/b2bf1948fae86a10d34c659f708f8b71 to your computer and use it in GitHub Desktop.
Save jorgecc/b2bf1948fae86a10d34c659f708f8b71 to your computer and use it in GitHub Desktop.
Customer.java
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