Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上我将在一个项目中拥有 n 个相同类型的不同文件。我想检索当我们尝试打开文件时当前将调用多页编辑器类的那些文件的文件名。
IEditorPartfor 编辑器有一个getEditorInput()方法可以为您提供编辑器的输入。
IEditorPart
getEditorInput()
编辑器输入可能是一个实例,IFileEditorInput在这种情况下您可以调用该getFile()方法。
IFileEditorInput
getFile()
输入也可能是IPathEditorInput在这种情况下您可以使用getPath(),或者可能是IURIEditorInputwhich has getURI()。
IPathEditorInput
getPath()
IURIEditorInput
getURI()