我正在用java编写Eclipse插件,现在我想使用ComboBoxPropertyDescriptor
public class MyComboBoxDescriptor extends ComboBoxPropertyDescriptor {
public MyComboBoxDescriptor(Object id, String displayName) {
super(id, displayName, new String[]{"value1", "value2", "value3"});
}
如何在运行时获取所选值?
答案 0 :(得分:0)
如果您正在使用PropertySheet和您自己的org.eclipse.ui.views.properties.IPropertySource实现,则标准ComboBoxPropertyDescriptor应在选择值时告知属性源。