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

📄 content.java

📁 一个jsp网页布局框架
💻 JAVA
字号:
package com.opensymphony.sitemesh;import java.io.IOException;import java.io.Writer;/** * @author Joe Walnes * @since SiteMesh 3 */public interface Content {    /**     * Write out the original unprocessed content.     */    void writeOriginal(Writer writer) throws IOException;    /**     * Length of the original unprocessed content.     */    int originalLength();    /**     * Write the contents of the <code>&lt;body&gt;</code> tag.     */    void writeBody(Writer out) throws IOException;    /**     * Write the contents of the <code>&lt;head&gt;</code> tag.     */    void writeHead(Writer out) throws IOException;    /**     * Get the Title of the document     */    String getTitle();    /**     * Get a property embedded into the <code>Page</code> as a <code>String</code>.     *     * @param name Name of property     * @return Property value     */    String getProperty(String name);    /**     * Get all available property keys for the <code>Page</code>.     *     * @return Property keys     */    String[] getPropertyKeys();    /**     * Manually add a property to page.     */    void addProperty(String name, String value);}

⌨️ 快捷键说明

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