text.java
来自「一个jsp网页布局框架」· Java 代码 · 共 30 行
JAVA
30 行
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 + =
减小字号Ctrl + -
显示快捷键?