在Eclipse插件中选择ComboBoxPropertyDescriptor

时间:2013-06-02 18:30:26

标签: java eclipse plugins properties jface

我正在用java编写Eclipse插件,现在我想使用ComboBoxPropertyDescriptor

public class MyComboBoxDescriptor extends ComboBoxPropertyDescriptor {

public MyComboBoxDescriptor(Object id, String displayName) {
    super(id, displayName, new String[]{"value1", "value2", "value3"});
}

如何在运行时获取所选值?

1 个答案:

答案 0 :(得分:0)

如果您正在使用PropertySheet和您自己的org.eclipse.ui.views.properties.IPropertySource实现,则标准ComboBoxPropertyDescriptor应在选择值时告知属性源。