Zakładka między polami w TableViewer

To, co chciałbym zrobić, to umieć zakładać między elementami w tabeli.

Obecnie tworzę taki stół w ten sposób.

this.tableViewer = 
            new TableViewer(parent , SWT.FULL_SELECTION);

   tableViewer.setUseHashlookup(true);
        table = tableViewer.getTable();

        GridData gridData = new GridData(GridData.FILL_BOTH);
        gridData.grabExcessVerticalSpace = true;
        table.setLayoutData(gridData);

        table.setLinesVisible(true);
        table.setHeaderVisible(true);

        ...

   /** Create the Cell Editor Array - will hold all columns **/
        editors = new CellEditor[table.getColumnCount()];
        /** Cell Editor Row 1 **/


  /** Set the column properties **/
        tableViewer.setColumnProperties(columnNames);

        /** Assign the cell editors to the viewer **/
        tableViewer.setCellEditors(editors);

        /** Set the cell modifier for the viewer **/
        tableViewer.setCellModifier(new MyCellModifier(this));
        //Create the Table Viewer

        /** Table Viewer Content and Label Provider **/
        tableViewer.setContentProvider(new MyContentProvider(this));
        tableViewer.setLabelProvider(new MyLabelProvider());

Ale nie wiem, jak skonfigurować tabulację. Wszystko inne działa tak samo, jak edycja kolumn, wyświetlanie danych itp. Po prostu utknęło w tej ostatniej części.

Jeśli przegapiłem oczywistą dokumentację lub javadocs - moje przeprosiny, a nawet wskazanie na te byłyby świetne.

questionAnswers(5)

yourAnswerToTheQuestion