📄 hierarchicalstreamwriter.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 + -