Access filtering export using file extension

I am using the org.eclipse.ui.exportWizard extension point in Eclipse 3.5 . When the user right-clicks on files in the workspace project explorer, I want my export wizard to be available if IFile is selected , with a specific extension.

I can use a picker to determine that the master should only appear for the IFile . There is a name " section , but if I try *. My_ext , the wizard is still available for all IFiles .

+2


source to share


1 answer


I'm not sure about this, but I think I remember that the name property is already a wildcard, so you should just specify .my_ext as the name property.



0


source







All Articles