TableFormatter

public class TableFormatter
extends Object

java.lang.Object 中
   ↳ com.android.tradefed.util.TableFormatter


辅助类,用于显示字符串元素矩阵,使每个元素列都排成一行

摘要

公共构造函数

TableFormatter()

公共方法

void displayTable( table, PrintWriter writer)

将给定的字符串元素显示为包含对齐列的表格。

TableFormatter setColumnSpacing(int spacing)

设置每列之间的空白字符数量。

公共构造函数

TableFormatter

public TableFormatter ()

公共方法

displayTable

public void displayTable ( table, 
                PrintWriter writer)

将给定的字符串元素显示为包含对齐列的表格。

参数
table :字符串元素的矩阵。行的长度可以不同

writer PrintWriter:要将输出转储到的 ERROR(/PrintWriter)

setColumnSpacing

public TableFormatter setColumnSpacing (int spacing)

设置每列之间的空白字符数量。

参数
spacing int:空白字符的数量

返回
TableFormatter TableFormatter