Created
December 23, 2013 11:44
-
-
Save davit/8095770 to your computer and use it in GitHub Desktop.
Java user login homework
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 cst.dave; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: root | |
* Date: 12/23/13 | |
* Time: 3:32 PM | |
* To change this template use File | Settings | File Templates. | |
*/ | |
public class User { | |
private String user; | |
public String getUser() { | |
return user; | |
} | |
public void setUser(String user) { | |
this.user = user; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment