Created
December 22, 2017 10:41
-
-
Save smallest87/966a325fb1db68e887298485d2788ef0 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 com.binangunkreatif.tutor.login; | |
| /** | |
| * Created by Julian on 18/12/2017. | |
| */ | |
| public class Contact { | |
| String name, email, uname, pass; | |
| public void setName(String name) { | |
| this.name = name; | |
| } | |
| public String getName() { | |
| return this.name; | |
| } | |
| public void setEmail(String email) { | |
| this.email = email; | |
| } | |
| public String getEmail() { | |
| return this.email; | |
| } | |
| public void setUname(String uname) { | |
| this.uname = uname; | |
| } | |
| public String getUname() { | |
| return this.uname; | |
| } | |
| public void setPass(String pass) { | |
| this.pass = pass; | |
| } | |
| public String getPass() { | |
| return this.pass; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment