在 Eclipse RCP 项目的一个部分中更新 table 视图的正确方法是什么?
What is the right way to update a table view in a Part in a Eclipse RCP project?
假设我的RCP项目中有一个ItemListPart
class,其中有一个table显示如下:
import java.util.List;
import javax.annotation.PostConstruct;
import org.eclipse.e4.ui.di.Focus;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
public class ItemListPart {
private Table table;
@PostConstruct
public void createControls(Composite parent){
//I wish the ItemList could be changed from outside the ItemListPart class.
List<Item> ItemList = getItemList();
parent.setLayout(new GridLayout(2, false));
table = new Table(parent, SWT.MULTI | SWT.BORDER | SWT.FULL_SELECTION);
table.setLinesVisible(true);
table.setHeaderVisible(true);
GridData data = new GridData(SWT.FILL, SWT.FILL, true, true);
data.heightHint = 200;
table.setLayoutData(data);
String[] titles = { "Item Name", "Description"};
for (int i = 0; i < titles.length; i++) {
TableColumn column = new TableColumn(table, SWT.NONE);
column.setText(titles[i]);
table.getColumn(i).pack();
}
for(Item it:ItemList){
TableItem item = new TableItem(table, SWT.NONE);
item.setText(0, it.getName());
item.setText(1, it.getDesc());
}
for (int i=0; i<titles.length; i++) {
table.getColumn (i).pack ();
}
}
@Focus
public void onFocus() {
table.setFocus();
}
}
这里的 ItemList<Item>
是一个列表,我希望它可以从 ItemListPart
class 外部进行更改,每当 ItemList<Item>
中的数据发生更改时,table 视图可以根据更新的数据自动刷新。实现这个目标的正确方法是什么?谢谢。
没有 'correct' 方法。
一种方法是使用事件代理,让您的视图部分从更新列表的代码中侦听事件。
在更新列表的代码中 post 一个事件:
@Inject
IEventBroker eventBroker;
...
eventBroker.post("/list/updated", Collections.EMPTY_MAP);
在您的视图中监听更新事件:
@Inject
@Optional
public void listUpdated(@UIEventTopic("/list/updated") Event event)
{
// TODO handle the update
}
注意:Event
是 org.osgi.service.event.Event
。
您可能会发现使用 TableViewer
比 Table
更容易,因为单独的内容提供程序使得更新 table 内容更改变得容易得多。
您还可以使用以下方式在事件中传递数据:
MyClass myClass = ....
eventBroker.post("/list/updated", myClass);
@Inject
@Optional
public void listUpdated(@UIEventTopic("/list/updated") MyClass myClass)
关于事件代理的更多信息here
假设我的RCP项目中有一个ItemListPart
class,其中有一个table显示如下:
import java.util.List;
import javax.annotation.PostConstruct;
import org.eclipse.e4.ui.di.Focus;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
public class ItemListPart {
private Table table;
@PostConstruct
public void createControls(Composite parent){
//I wish the ItemList could be changed from outside the ItemListPart class.
List<Item> ItemList = getItemList();
parent.setLayout(new GridLayout(2, false));
table = new Table(parent, SWT.MULTI | SWT.BORDER | SWT.FULL_SELECTION);
table.setLinesVisible(true);
table.setHeaderVisible(true);
GridData data = new GridData(SWT.FILL, SWT.FILL, true, true);
data.heightHint = 200;
table.setLayoutData(data);
String[] titles = { "Item Name", "Description"};
for (int i = 0; i < titles.length; i++) {
TableColumn column = new TableColumn(table, SWT.NONE);
column.setText(titles[i]);
table.getColumn(i).pack();
}
for(Item it:ItemList){
TableItem item = new TableItem(table, SWT.NONE);
item.setText(0, it.getName());
item.setText(1, it.getDesc());
}
for (int i=0; i<titles.length; i++) {
table.getColumn (i).pack ();
}
}
@Focus
public void onFocus() {
table.setFocus();
}
}
这里的 ItemList<Item>
是一个列表,我希望它可以从 ItemListPart
class 外部进行更改,每当 ItemList<Item>
中的数据发生更改时,table 视图可以根据更新的数据自动刷新。实现这个目标的正确方法是什么?谢谢。
没有 'correct' 方法。
一种方法是使用事件代理,让您的视图部分从更新列表的代码中侦听事件。
在更新列表的代码中 post 一个事件:
@Inject
IEventBroker eventBroker;
...
eventBroker.post("/list/updated", Collections.EMPTY_MAP);
在您的视图中监听更新事件:
@Inject
@Optional
public void listUpdated(@UIEventTopic("/list/updated") Event event)
{
// TODO handle the update
}
注意:Event
是 org.osgi.service.event.Event
。
您可能会发现使用 TableViewer
比 Table
更容易,因为单独的内容提供程序使得更新 table 内容更改变得容易得多。
您还可以使用以下方式在事件中传递数据:
MyClass myClass = ....
eventBroker.post("/list/updated", myClass);
@Inject
@Optional
public void listUpdated(@UIEventTopic("/list/updated") MyClass myClass)
关于事件代理的更多信息here