Uses of Interface
org.w3c.dom.Text
-
Packages that use Text 软件包 描述 javax.xml.soap 提供用于创建和构建SOAP消息的API。org.w3c.dom 提供文档对象模型(DOM)的接口。 -
-
Uses of Text in javax.xml.soap
Subinterfaces of Text in javax.xml.soap Modifier and Type 接口 描述 interface
Text
值为文本的节点的表示。 -
Uses of Text in org.w3c.dom
Subinterfaces of Text in org.w3c.dom Modifier and Type 接口 描述 interface
CDATASection
CDATA部分用于转义包含否则将被视为标记的字符的文本块。Methods in org.w3c.dom that return Text Modifier and Type 方法 描述 Text
Document. createTextNode(String data)
为指定的字符串创建一个Text
节点。Text
Text. replaceWholeText(String content)
用指定的文本替换当前节点和所有逻辑上相邻的文本节点的文本。Text
Text. splitText(int offset)
Breaks this node into two nodes at the specifiedoffset
, keeping both in the tree as siblings.
-