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

📄 iconsoleinputlistener.java

📁 Python Development Environment (Python IDE plugin for Eclipse). Features editor, code completion, re
💻 JAVA
字号:
package org.python.pydev.debug.core;

import org.python.pydev.debug.model.AbstractDebugTarget;

/**
 * This interface can be used to listen to what the user writes in the console when debugging.
 *
 */
public interface IConsoleInputListener {

	/**
	 * This method is called whenever a new line is written in the console while debugging.
	 * 
	 * @param lineReceived this is the line that was written.
	 * @param target this is the target of the debug
	 */
	void newLineReceived(String lineReceived, AbstractDebugTarget target);

	/**
	 * This method is called when there is a paste action in the console.
	 * 
	 * @param text this is the text that was pasted
	 * @param target this is the target of the debug
	 */
	void pasteReceived(String text, AbstractDebugTarget target);

	
}

⌨️ 快捷键说明

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