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

📄 text.java

📁 OS(OpenSymphony)的SiteMesh是一个用来在JSP中实现页面布局和装饰(layout and decoration)的框架组件
💻 JAVA
字号:
package com.opensymphony.module.sitemesh.html;import com.opensymphony.module.sitemesh.html.util.CharArray;/** * Text returned by HTMLTagTokenizer. * * @see com.opensymphony.module.sitemesh.html.tokenizer.TokenHandler * @see com.opensymphony.module.sitemesh.html.tokenizer.TagTokenizer * * @author Joe Walnes */public interface Text {    /**     * Get the complete contents of the text block, preserving original formatting.     *     * This has a slight overhead in that it needs to construct a String. For improved performance, use writeTo() instead.     *     * @see #writeTo(com.opensymphony.module.sitemesh.html.util.CharArray)     */    String getContents();    /**     * Write out the complete contents of the text block, preserving original formatting.     */    void writeTo(CharArray out);}

⌨️ 快捷键说明

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