Back to project page LCFR-Mobile-Android.
The source code is released under:
Apache License
If you think the Android project LCFR-Mobile-Android 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 org.dizon.lcfr; /* w ww .j ava 2 s. c o m*/ public class ProtocolFile { private String fileName; private String fileHash; public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getFileHash() { return fileHash; } public void setFileHash(String fileHash) { this.fileHash = fileHash; } }