📄 ideltaprocessor.java
字号:
/*
* Created on 12/10/2005
*/
package org.python.pydev.core;
public interface IDeltaProcessor<X> {
/**
* Process some update that was added with the passed data.
*/
void processUpdate(X data);
/**
* Process some delete that was added with the passed data.
*/
void processDelete(X data);
/**
* Process some insert that was added with the passed data.
*/
void processInsert(X data);
/**
* Ends the processing (so that the processor might save all the delta info in a large chunck,
* as the deltas will be deleted from the disk after this call).
*/
void endProcessing();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -