Back to project page AndFileTranser.
The source code is released under:
GNU General Public License
If you think the Android project AndFileTranser 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.client; // ww w . ja v a2s . co m public class UpdateInfo { private String mFileName = ""; private long mTotalLength = 0; private long mSendLength = 0; public String getFileName() { return mFileName; } public void setFileName(String fileName) { this.mFileName = fileName; } public long getTotalLength() { return mTotalLength; } public void setTotalLength(long totalLength) { this.mTotalLength = totalLength; } public long getSendLength() { return mSendLength; } public void setSendLength(long sendLength) { this.mSendLength = sendLength; } }