Back to project page VirginMobileMinutesChecker.
The source code is released under:
Copyright 2011 Jay Goel. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Red...
If you think the Android project VirginMobileMinutesChecker 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 com.baker.vm; //from w w w .j a va 2 s .c o m /** * @author baker * */ public class UsernamePassword { public UsernamePassword(final String iUser, final String iPass) { user = iUser; pass = iPass; } public final String user; public final String pass; @Override public String toString() { return user + " (" + pass + ")"; } }