📄 mimeclientfactory.java
字号:
// MimeClientFactory.java// $Id: MimeClientFactory.java,v 1.1 2000/09/19 16:16:07 bmahe Exp $// (c) COPYRIGHT MIT, INRIA and Keio, 2000.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.jigsaw.http;import org.w3c.www.mime.MimeHeaderHolder;import org.w3c.www.mime.MimeParser;import org.w3c.www.mime.MimeParserException;import org.w3c.www.mime.MimeParserFactory;/** * The Mime factory for creating requests out of the client transport streams. * This factory creates instances of <code>org.w3c.jigsaw.http.Request</code> * a server-specific subclass of the generic <code>org.w3c.www.http.HttpRequest * </code> class. * @see org.w3c.www.http.HttpRequest */class MimeClientFactory implements MimeParserFactory { Client client = null; public MimeHeaderHolder createHeaderHolder(MimeParser parser) { return new Request(client, parser); } MimeClientFactory(Client client) { this.client = client; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -