Java游戏高级编程!!很不错的!!!Java游戏高级编程!!很不错的

源代码在线查看: contentaccessor.java

软件大小: 1205 K
上传用户: invill
关键词: Java 高级编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				     package com.croftsoft.core.util.cache;
				
				     import java.io.*;
				
				     /*********************************************************************
				     * An object capable of making content accessible via an InputStream.
				     *
				     * 
				     *
				     * For example, a ContentAccessor might retrieve content from a
				     * website via a URL, a database or file storage, a remote object
				     * such as another cache, or even dynamically generate the content
				     * upon demand.
				     *
				     * 
				     *
				     * As yet another possibility, a ContentAccessor object
				     * may potentially attempt to access the content from several
				     * different sources sequentially until it is successful.
				     *
				     * @see
				     *   URLContentAccessor
				     *
				     * @version
				     *   1999-04-24
				     * @author
				     *   David W. Croft
				     *********************************************************************/
				
				     public interface  ContentAccessor
				     //////////////////////////////////////////////////////////////////////
				     //////////////////////////////////////////////////////////////////////
				     {
				
				     public InputStream  getInputStream ( ) throws IOException;
				
				     //////////////////////////////////////////////////////////////////////
				     //////////////////////////////////////////////////////////////////////
				     }
							

相关资源