blob: 9abd9cb3bf18533d4e50007a7ce527d03fe1117f [file] [log] [blame]
package org.eclipse.jface.layout;
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation
* IBM Corporation - API refactoring and general maintenance
*******************************************************************************/
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
/**
* The TableColumnAdapter is the ControlAdapter used to maintain Table sizes
* {@link Table}.
*
* @since 3.3
* @see AbstractColumnAdapter
*/
public class TableColumnAdapter extends AbstractColumnAdapter {
/**
* Create a new instance of the receiver.
*
* @param table
* the table the layout is applied on
*/
public TableColumnAdapter(Table table) {
super(table);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.layout.AbstractColumnAdapter#getColumnCount()
*/
int getColumnCount() {
return ((Table) getControl()).getColumnCount();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.layout.AbstractColumnAdapter#setColumnWidths(int[])
*/
void setColumnWidths(int[] widths) {
TableColumn[] columns = ((Table) getControl()).getColumns();
for (int i = 0; i < widths.length; i++) {
columns[i].setWidth(widths[i]);
}
}
}