我根据布尔值的状态将图像放在列中。
col = new TableViewerColumn(this, SWT.NONE);
col.getColumn().setWidth(70);
col.getColumn().setText("Print Status");
col.setLabelProvider(new ColumnLabelProvider() {
@Override
public Image getImage(Object element) {
if (((AplotResultsDataModel.ResultsData) element).isSuccess()) {
return SUCCESS;
}
return FAIL;
}
});
这是getImage
方法
private static Image getImage(String file) {
Bundle bundle = FrameworkUtil.getBundle(Viewer.class);
URL url = FileLocator.find(bundle, new Path("icons/" + file), null);
ImageDescriptor image = ImageDescriptor.createFromURL(url);
return image.createImage();
}
我尝试了两种创建图像的方法。
private static final Image FAIL = getImage("failed.png");
和
final Image FAIL = new Image(Display.getDefault() ,"D:/Users/workspace/com.aplot/icons/failed.png");
在这两种情况下,图像都会显示,但旁边有一个文本路径。路径看起来像是该列的数组值。
例子:
[图片] com.aplot.datamodel.ResultsDataModel$ResultsData@9cce9
如何删除文本并仅显示图像?