Package org.erlide.ui.internal.util

Examples of org.erlide.ui.internal.util.TableLayoutComposite


                final Table tableControl = fTable.getTable();

                fTableControl = tableControl;
                tableControl.setLayout(new TableLayout());
            } else {
                final TableLayoutComposite composite = new TableLayoutComposite(parent,
                        SWT.NONE);
                fTableControl = composite;

                fTable = createTableViewer(composite);
                final Table tableControl = fTable.getTable();

                tableControl.setHeaderVisible(fTableColumns.fHeaders != null);
                tableControl.setLinesVisible(fTableColumns.fDrawLines);
                final ColumnLayoutData[] columns = fTableColumns.fColumns;
                for (int i = 0; i < columns.length; i++) {
                    composite.addColumnData(columns[i]);
                    final TableColumn column = new TableColumn(tableControl, SWT.NONE);
                    // tableLayout.addColumnData(columns[i]);
                    if (fTableColumns.fHeaders != null) {
                        column.setText(fTableColumns.fHeaders[i]);
                    }
View Full Code Here

TOP

Related Classes of org.erlide.ui.internal.util.TableLayoutComposite

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.