首页
•
知识库
•
资源下载
•
在线工具
•
索引
•
Jar
•
Java
•
关键词
•
常用命令
•
口令服务
org.apache.xml.serializer.WriterChain.java
所属路径:/xalan/serializer/{}/serializer-{}.jar 关联版本:2.7.1,2.7.0.patch01-brew,2.7.0.patch02-brew,2.7.1.patch01-brew,j_2.7.0
依赖类列表
/** * It is unfortunate that java.io.Writer is a class rather than an interface. * The serializer has a number of classes that extend java.io.Writer * and which send their ouput to a yet another wrapped Writer or OutputStream. * * The purpose of this interface is to force such classes to over-ride all of * the important methods defined on the java.io.Writer class
namely these: *
* write(int val) * write(char[] chars) * write(char[] chars
int start
int count) * write(String chars) * write(String chars
int start
int count) * flush() * close() * * In this manner nothing will accidentally go directly to * the base class rather than to the wrapped Writer or OutputStream. * * The purpose of this class is to have a uniform way of chaining the output of one writer to * the next writer in the chain. In addition there are methods to obtain the Writer or * OutputStream that this object sends its output to. * * This interface is only for internal use withing the serializer. * @xsl.usage internal */interface WriterChain
包列表
/xalan/xalan/2.7.1/xalan-2.7.1.jar
/xalan/xalan/2.7.1/xalan-2.7.1.jar
pom文件
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>