コード例 #1
0
 protected void createSystemFileContexts(InputContextManager manager, FileStoreEditorInput input) {
   try {
     IFileStore store = EFS.getStore(input.getURI());
     IEditorInput in = new FileStoreEditorInput(store);
     manager.putContext(in, new CategoryInputContext(this, in, true));
   } catch (CoreException e) {
     PDEPlugin.logException(e);
   }
 }
コード例 #2
0
 protected void createStorageContexts(InputContextManager manager, IStorageEditorInput input) {
   manager.putContext(input, new CategoryInputContext(this, input, true));
 }
コード例 #3
0
 protected void createResourceContexts(InputContextManager manager, IFileEditorInput input) {
   manager.putContext(input, new CategoryInputContext(this, input, true));
   manager.monitorFile(input.getFile());
 }