Back to project page Cardeto.
The source code is released under:
Apache License
If you think the Android project Cardeto 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.ggt.cardeto.embeddedwebserver.sqlitemodule.tableouputrenderers; /*w w w. j ava 2 s.c om*/ import java.util.List; /** * Interface to implement to provide a class capable of rendering a SQLite Table * * @author gduche */ public interface TableOutputRenderer { public void renderHeader(StringBuilder output, List<String> tablesList); public void renderTable(StringBuilder output, String tableName, List<String> columns, List<List<String>> rows); public void renderFooter(StringBuilder output); }