Skip to content

Instantly share code, notes, and snippets.

@mrmemmo
Created September 23, 2019 19:26
Show Gist options
  • Select an option

  • Save mrmemmo/dc6364389d8f6ffe8ba4e8d7687ce76d to your computer and use it in GitHub Desktop.

Select an option

Save mrmemmo/dc6364389d8f6ffe8ba4e8d7687ce76d to your computer and use it in GitHub Desktop.
public class Faculty
{
String dob;
String fullName;
final static int YEAR_FOUNDED = 1785;
public Faculty(){
}
public Faculty(String name,String dob)
{
fullName = name;
this.dob = dob;
}
public void setName(String name){
}
public void setDOB (String dob){
}
public String createUsername(){
return "";
}
public int getAge(String dOBirth){
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment