ipythonnaturelistener.java
来自「Python Development Environment (Python I」· Java 代码 · 共 31 行
JAVA
31 行
/*
* Created on Oct 28, 2006
* @author Fabio
*/
package org.python.pydev.plugin.nature;
import java.util.List;
import org.eclipse.core.resources.IProject;
import org.python.pydev.core.IPythonPathNature;
/**
* Interface that should be used for clients that want to know:
*
* - when the project pythonpath has been rebuilt
*
* @author Fabio
*/
public interface IPythonNatureListener {
/**
* Notification that the pythonpath has been rebuilt.
*
* @param project is the project that had the pythonpath rebuilt
* @param projectPythonpath the project pythonpath used when rebuilding {@link IPythonPathNature#getCompleteProjectPythonPath()}
*/
void notifyPythonPathRebuilt(IProject project, List<String> projectPythonpath);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?