isimpleassistparticipant.java
来自「Python Development Environment (Python I」· Java 代码 · 共 28 行
JAVA
28 行
/*
* Created on 24/09/2005
*/
package org.python.pydev.editor.simpleassist;
import java.util.Collection;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.python.pydev.core.docutils.PySelection;
import org.python.pydev.editor.PyEdit;
public interface ISimpleAssistParticipant {
/**
* This method should be overriden to compute the completions
*
* @param activationToken this is the activation token
* @param qualifier this is the qualifier
* @param ps the selectio
* @param edit the edit
* @param offset the offset
*
* @return a list of completions
*/
Collection<ICompletionProposal> computeCompletionProposals(String activationToken, String qualifier, PySelection ps, PyEdit edit, int offset);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?