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

📄 hierarchicalstreamwriter.java

📁 xstream是一个把java object序列化成xml文件的开源库,轻便好用
💻 JAVA
字号:
package com.thoughtworks.xstream.io;/** * @author Joe Walnes */public interface HierarchicalStreamWriter {    void startNode(String name);    void addAttribute(String name, String value);    /**     * Write the value (text content) of the current node.     */    void setValue(String text);    void endNode();    /**     * Flush the writer, if necessary.     */    void flush();    /**     * Close the writer, if necessary.     */    void close();    /**     * Return the underlying HierarchicalStreamWriter implementation.     *     * <p>If a Converter needs to access methods of a specific HierarchicalStreamWriter implementation that are not     * defined in the HierarchicalStreamWriter interface, it should call this method before casting. This is because     * the writer passed to the Converter is often wrapped/decorated by another implementation to provide additional     * functionality (such as XPath tracking).</p>     *     * <p>For example:</p>     * <pre>MySpecificWriter mySpecificWriter = (MySpecificWriter)writer; <b>// INCORRECT!</b>     * mySpecificWriter.doSomethingSpecific();</pre>     * <pre>MySpecificWriter mySpecificWriter = (MySpecificWriter)writer.underlyingWriter();  <b>// CORRECT!</b>     * mySpecificWriter.doSomethingSpecific();</pre>     *     * <p>Implementations of HierarchicalStreamWriter should return 'this', unless they are a decorator, in which case     * they should delegate to whatever they are wrapping.</p>     */    HierarchicalStreamWriter underlyingWriter();}

⌨️ 快捷键说明

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