Back to project page dissertation-project.
The source code is released under:
MIT License
If you think the Android project dissertation-project 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.fyp.widerst.partial; /*from w w w . ja v a2s .c o m*/ public class DataWholePartial { private String mKey; private int mNumOfPieces; private String mFileName; private String mMimeType; public DataWholePartial() { } public DataWholePartial(String key, int numOfPieces, String fileName, String mimeType) { mKey = key; mNumOfPieces = numOfPieces; mFileName = fileName; mMimeType = mimeType; } public String getFileName() { return mFileName; } public String getKey() { return mKey; } public String getMimeType() { return mMimeType; } public void setKey(String key) { mKey = key; } public int getNumOfPieces() { return mNumOfPieces; } public void setFileName(String filename) { mFileName = filename; } public void setMimeType(String mimeType) { mMimeType = mimeType; } public void setNumOfPieces(int numOfPieces) { mNumOfPieces = numOfPieces; } }