Back to project page Werewolf-Android-Client.
The source code is released under:
Copyright (c) 2013, Timothy Cohen All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project Werewolf-Android-Client listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package edu.wm.werewolf_client; /* w ww .j a va 2 s .c om*/ public class UsernameAndPassword { private static String username; private static String password; public static String getUsername() { return username; } public static void setUsername(String username) { UsernameAndPassword.username = username; } public static String getPassword() { return password; } public static void setPassword(String password) { UsernameAndPassword.password = password; } }