JFace adapt TableViewerColumn
I would开发者_运维技巧 like to compute the width for each TableViewerColumn so that it fits the content best. Is there any "best practice" way of doing this?
I think you're after ...
TableViewerColumn col = ...;
col.getColumn().pack();
精彩评论