iorganizeimports.java

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

JAVA
20
字号
/*
 * Created on 25/09/2005
 */
package org.python.pydev.editor.actions;

import org.python.pydev.core.docutils.PySelection;
import org.python.pydev.editor.PyEdit;

public interface IOrganizeImports {

    /**
     * This function should organize the imports in the current pyedit.
     * 
     * @param ps this is the selection (contains the doc)
     * @param pyEdit this is the edit
     */
    void performArrangeImports(PySelection ps, PyEdit pyEdit);

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?