📄 documentfilter.java
字号:
package net.matuschek.spider.docfilter;
/*********************************************
Copyright (c) 2001 by Daniel Matuschek
*********************************************/
import net.matuschek.http.HttpDoc;
/**
* This interface defines a filter for a HTTP document.
* Objects that implement this interface will do some kind
* of transformation on the document.
*
* @author Daniel Matuschek
* @version $Revision: 1.5 $
*/
public interface DocumentFilter
{
/**
* This method filters (transforms) an HttpDoc
*/
HttpDoc process(HttpDoc input) throws FilterException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -