Back to project page android-forensics.
The source code is released under:
MIT License
If you think the Android project android-forensics 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 pt.ist.androidforensics.data; // w w w .j a v a 2 s.co m /** * All objects that will be exported to .csv have to extend from this class * * @author letz * */ public abstract class Model { private int mId; public int getId() { return mId; } public void setId(int mId) { this.mId = mId; } /** * Create a dot separated format to save the object * @return */ public abstract String toCSV(); /** * Create a dot separated format to save the object header * @return */ public abstract String toCSVHeader(); }