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; /*from w w w . j a v a 2 s .c o m*/ import java.util.ArrayList; import java.util.List; public class Protocol { private List<ProtocolFile> files; private int tocIndex; private String name; public Protocol() { files = new ArrayList<ProtocolFile>(); } public Protocol(String _name) { setName(_name); } public List<ProtocolFile> getFiles() { return files; } public void setFiles(List<ProtocolFile> files) { this.files = files; } public int getTocIndex() { return tocIndex; } public void setTocIndex(int tocIndex) { this.tocIndex = tocIndex; } public String getName() { return name; } public void setName(String string) { this.name = string; } @Override public String toString(){ return this.name; } }