0

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

public class MyComboBoxDescriptor extends ComboBoxPropertyDescriptor {

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

如何在运行时获取选定的值?

4

1 回答 1

0

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

于 2013-06-03T19:42:26.790 回答