hierarchicalstreamwriter.java
来自「xstream是一个把java object序列化成xml文件的开源库,轻便好用」· Java 代码 · 共 50 行
JAVA
50 行
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 + =
减小字号Ctrl + -
显示快捷键?