⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imodulesobserver.java

📁 Python Development Environment (Python IDE plugin for Eclipse). Features editor, code completion, re
💻 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 + -