imodulesobserver.java

来自「Python Development Environment (Python I」· Java 代码 · 共 26 行

JAVA
26
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?