📄 iinterpreterobserver.java
字号:
/*
* Created on 07/09/2005
*/
package org.python.pydev.ui.interpreters;
import org.eclipse.core.runtime.IProgressMonitor;
import org.python.pydev.core.IInterpreterManager;
import org.python.pydev.plugin.nature.PythonNature;
public interface IInterpreterObserver {
/**
* Notifies observers that the pythonpath has just been restored with the given interpreter information (the information
* has been re-set by the user)
*
* @param manager the manager that had its default system information just restored
* @param defaultSelectedInterpreter
* @param monitor the monitor used in the restore
*/
void notifyDefaultPythonpathRestored(IInterpreterManager manager, String defaultSelectedInterpreter, IProgressMonitor monitor);
/**
* Notifies observers that the given interpreter manager has just been recreated (this is due to restarting the plugin)
*
* @param manager the manager that has just been recreated
*/
void notifyInterpreterManagerRecreated(IInterpreterManager interpreterManager);
/**
* Notifies observers that the given nature has just had its pythonpath restored (the information was changed by the user)
*
* @param nature the nature that had its pythonpath recreated
* @param monitor
* @param defaultSelectedInterpreter
*/
void notifyProjectPythonpathRestored(PythonNature nature, IProgressMonitor monitor, String defaultSelectedInterpreter);
/**
* Notifies observers that the given nature has just been recreated (after the plugin restarted)
*
* @param nature the recreated nature
* @param monitor
*/
void notifyNatureRecreated(PythonNature nature, IProgressMonitor monitor);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -