Eclipse RCP首选项对话框

时间:2012-05-01 23:51:28

标签: java eclipse eclipse-rcp

问题

是否可以创建第二个可以使用PreferencePage的首选项对话框,就像标准的eclipse首选项(Eclipse> Preferences或Window> Preferences)一样?

当前方法

到目前为止,我的解决方案是通过扩展PreferenceEditorDialog创建我自己的Dialog并实现我自己的Preference Dialog样式布局。

/**
 * A preference dialog is a hierarchical presentation of preference pages. Each
 * page is represented by a node in the tree shown on the left hand side of the
 * dialog; when a node is selected, the corresponding page is shown on the right
 * hand side.
 */
public class PreferenceEditorDialog extends Dialog implements IPageChangeProvider {

}

我更愿意重用eclipse实现,因为我不必自己维护代码。

1 个答案:

答案 0 :(得分:3)

PreferenceDialog正是您要找的。