Back to project page GasTracker.
The source code is released under:
Copyright 2014 kurtzy317
If you think the Android project GasTracker 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.mindalsoblown.gastracker; /*from w w w . j av a 2s . co m*/ public class User { private String UserName; private String Email; private String Password; private boolean CarMPG; private String FName; private String LName; private int ID; /** * @return the userName */ public String getUserName() { return UserName; } /** * @param userName the userName to set */ public void setUserName(String userName) { UserName = userName; } /** * @return the email */ public String getEmail() { return Email; } /** * @param email the email to set */ public void setEmail(String email) { Email = email; } /** * @return the password */ public String getPassword() { return Password; } /** * @param password the password to set */ public void setPassword(String password) { Password = password; } /** * @return the carMPG */ public boolean isCarMPG() { return CarMPG; } /** * @param carMPG the carMPG to set */ public void setCarMPG(boolean carMPG) { CarMPG = carMPG; } /** * @return the fName */ public String getFName() { return FName; } /** * @param fName the fName to set */ public void setFName(String fName) { FName = fName; } /** * @return the lName */ public String getLName() { return LName; } /** * @param lName the lName to set */ public void setLName(String lName) { LName = lName; } /** * @return the iD */ public int getID() { return ID; } /** * @param iD the iD to set */ public void setID(int iD) { ID = iD; } }