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

📄 imagefileresource.java

📁 很棒的web服务器源代码
💻 JAVA
字号:
// ImageFileResource.java// $Id: ImageFileResource.java,v 1.2 2003/01/24 14:59:55 cbournez Exp $// (c) COPYRIGHT MIT, INRIA and Keio, 1999.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.jigsaw.resources;import org.w3c.tools.resources.FileResource;import java.io.InputStream;import java.io.IOException;public abstract class ImageFileResource extends FileResource {    /**     * Save the given stream as the underlying image comment content.     * This method preserve the old file version in a <code>~</code> file.     * @param in The input stream to use as the resource entity.     * @return A boolean, <strong>true</strong> if the resource was just     * created, <strong>false</strong> otherwise.     * @exception IOException If dumping the content failed.     */    public abstract boolean newMetadataContent(InputStream in)	throws IOException;}

⌨️ 快捷键说明

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