📄 imodulesobserver.java
字号:
/*
* Created on Sep 24, 2006
* @author Fabio
*/
package org.python.pydev.editor.codecompletion.revisited.modules;
import org.python.pydev.core.ICodeCompletionASTManager;
/**
* This interface is used to identify what happens to modules.
*
* @author Fabio
*/
public interface IModulesObserver {
/**
* This method is called whenever a compiled module is created (and after its
* tokens are set).
*
* @param module this is the compiled module that has just been created.
* @param manager the manager that where this module is stored
*/
void notifyCompiledModuleCreated(CompiledModule module, ICodeCompletionASTManager manager);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -