Created
September 23, 2019 19:26
-
-
Save mrmemmo/dc6364389d8f6ffe8ba4e8d7687ce76d 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 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