Android Open Source - AndFileTranser Update Info






From Project

Back to project page AndFileTranser.

License

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.

Java Source Code

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;
  }



}




Java Source Code List

com.client.BrowseFileAdapter.java
com.client.MainActivity.java
com.client.SendFileAdapter.java
com.client.ShowFileActivity.java
com.client.UpdateInfo.java
com.server.AcceptFileAdapter.java
com.server.MainActivity.java
com.server.ServerThread.java
com.server.Server.java
com.server.UpdateInfo.java