我正在创建一个Eclipse PropertyPage。在属性中,我想获取用户项目。为了使用户能够使用该属性,他必须右键单击该项目,然后单击属性。因此,我假设有可能获得用户项目。您可以在PropertyPage中获取用户项目吗?

最佳答案

getElement()PropertyPage方法返回属性页的选定对象。因此,使用类似:

IAdaptable adaptable = getElement();

IProject project = (IProject)adaptable.getAdapter(IProject.class);


这是createContents方法,该元素在构造函数中尚不可用。

09-30 19:29