Package com.bethecoder.table.impl

Examples of com.bethecoder.table.impl.SimpleTable


            for (int i = 0; i < infos.size(); i++) {
                DbDumpInfo info = infos.get(i);
                rows[i] = new String[]{info.name, info.dbName, info.database, info.comment, info.finishedAt.toString(), info.getSizeAsString()};
            }

            return new SimpleTable().getTable(
                new ASCIITableHeader[]{ h("Name"), h("Type"), h("DB"), h("Comment"), h("Created"), h("Size")},
                rows);
        }
View Full Code Here

TOP

Related Classes of com.bethecoder.table.impl.SimpleTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.