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

📄 diffprovider.java

📁 wiki建站资源 java编写的 很好用
💻 JAVA
字号:
package com.ecyrd.jspwiki.diff;import java.io.IOException;import java.util.Properties;import com.ecyrd.jspwiki.NoRequiredPropertyException;import com.ecyrd.jspwiki.WikiEngine;import com.ecyrd.jspwiki.WikiProvider;/** * TODO  */public interface DiffProvider extends WikiProvider{    /**     * The return string is to be XHTML compliant ready to display html.  No further     * processing of this text will be done by the wiki engine.     */    String makeDiffHtml(String oldWikiText, String newWikiText);            public static class NullDiffProvider implements DiffProvider    {        public String makeDiffHtml(String oldWikiText, String newWikiText)        {            return "You are using the NullDiffProvider, check your properties file.";        }        public void initialize(WikiEngine engine, Properties properties)             throws NoRequiredPropertyException, IOException        {        }        public String getProviderInfo()        {            return "NullDiffProvider";        }    }    }

⌨️ 快捷键说明

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