Back to project page SimpleReader.
The source code is released under:
Apache License
If you think the Android project SimpleReader 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.dreamteam.app.entity; /* www.j a v a2s .c o m*/ public class Section { private String title; private String url; private String tableName;//???????? public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getTableName() { return tableName; } public void setTableName(String tableName) { this.tableName = tableName; } }