startElement.SAX(XML)
startElement.SAX()所属R语言包:XML
Generic Methods for SAX callbacks
SAX回调的通用方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a collection of generic functions for which one can write methods so that they are called in repsonse to different SAX events. The idea is that one defines methods for different classes of the .state argument and dispatch to different methods based on that argument. The functions represent the different SAX events.
这是哪一个可以写的方法,使他们在回应测到不同的SAX事件被称为泛型函数的集合。我们的想法是,一个为不同类别的.state参数定义的方法,分派到不同的方法基于这样的说法。的功能代表了不同的SAX事件。
用法----------Usage----------
startElement.SAX(name, atts, .state = NULL)
endElement.SAX(name, .state = NULL)
comment.SAX(content, .state = NULL)
processingInstruction.SAX(target, content, .state = NULL)
text.SAX(content, .state = NULL)
entityDeclaration.SAX(name, base, sysId, publicId, notationName, .state = NULL)
.InitSAXMethods(where = "package:XML")
参数----------Arguments----------
参数:name
the name of the XML element or entity being declared
被宣布的XML元素或实体的名称
参数:atts
named character vector of XML attributes
指定的字符向量的XML属性
参数:content
the value/string in the processing instruction or comment
值/字符串处理指令或者注释
参数:target
the target of the processing instruction, e.g. the R in <?R....>
目标的处理指令,例如中的R<?R....>
参数:base
x
x
参数:sysId
the system identifier for this entity
该实体的系统标识符
参数:publicId
the public identifier for the entity
实体的公共标识符
参数:notationName
name of the notation specification
名称的符号规范
参数:.state
the state object on which the user-defined methods should dispatch.
状态对象的用户定义的方法应该派遣。
参数:where
the package in which the class and method definitions should be defined. This is almost always unspecified.
包中的类和方法的定义应该被定义。这几乎总是不确定的。
值----------Value----------
Each method should return the (potentially modified) state value.
每个方法应该返回一个状态值(可能被修改)。
注意----------Note----------
This no longer requires the Expat XML parser to be installed.
这不再需要安装expat XML解析器。
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
<h3>See Also</h3> <code>xmlEventParse</code>
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|