/**
* Create the variables tab
*/
private void createVariablesTab(){
TabItem tbtmVariables = new TabItem(tabFolder, SWT.NONE);
tbtmVariables.setText("Variables");
tblVariables = new Table(tabFolder, SWT.BORDER | SWT.FULL_SELECTION);
tblVariables.setHeaderVisible(true);
tbtmVariables.setControl(tblVariables);
tblVariables.setLinesVisible(true);
TableColumn tblclmnVariableName = new TableColumn(tblVariables, SWT.NONE);
tblclmnVariableName.setWidth(100);
tblclmnVariableName.setText("Variable Name");
TableColumn tblclmnValue = new TableColumn(tblVariables, SWT.NONE);
tblclmnValue.setWidth(389);
tblclmnValue.setText("Value");
}
RobotFrameworkDebuggerUIThread.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:robotFrameworkDebugger
作者:
评论列表
文章目录