Home | History | Annotate | Download | only in widgets

Lines Matching refs:mTable

56     private Table mTable;
91 mTable = new Table(mInnerGroup, style);
92 mTable.setHeaderVisible(true);
93 mTable.setLinesVisible(false);
100 mTable.setLayoutData(data);
106 final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
108 final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
110 final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
112 final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
115 adjustColumnsWidth(mTable, column0, column1, column2, column3);
116 setupSelectionListener(mTable);
118 setupTooltip(mTable);
156 fillTable(mTable);
192 if (mTable != null && !mTable.isDisposed()) {
193 for (TableItem i : mTable.getItems()) {
220 if (mTable == null || mTable.isDisposed()) {
224 for (TableItem i : mTable.getItems()) {
415 if (mInnerGroup != null && mTable != null && !mTable.isDisposed()) {