iconsoleinputlistener.java

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

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