Community
Participate
Working Groups
I20060124-0800. We registered an adapter for IEditorInput but it is not working for RemoteFileEditorInput because it does not query the platform registry, instead getAdapter(...) is coded like this: public Object getAdapter(Class adapter) { if (adapter == IWorkbenchAdapter.class) { return this; } return null; } You can either inherit from PlatformObject and replace 'return null' with 'return super.getAdapter(adapter); or replace 'return null' with: return Platform.getAdapterManager().getAdapter(this, adapter);
Fix released to HEAD