iinterpreterobserver.java
来自「Python Development Environment (Python I」· Java 代码 · 共 48 行
JAVA
48 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?