dtdElementValidEntry(XML)
dtdElementValidEntry()所属R语言包:XML
Determines whether an XML element allows a particular type of sub-element.
确定一个XML元素是否允许特定类型的子元素。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This tests whether name is a legitimate tag to use as a direct sub-element of the element tag according to the definition of the element element in the specified DTD. This is a generic function that dispatches on the element type, so that different version take effect for XMLSequenceContent, XMLOrContent, XMLElementContent.
此测试是否nameelement标签的直接子元素的使用,根据指定的DTD中的的定义element元素的,是一个合法的标记。这是一个泛型函数的元素类型的调度,使不同的版本生效的XMLSequenceContent,XMLOrContent,XMLElementContent。
用法----------Usage----------
dtdElementValidEntry(element, name, pos=NULL)
参数----------Arguments----------
参数:element
The XMLElementDef defining the tag in which we are asking whether the sub-element can be used.
XMLElementDef定义标签中,我们询问是否可以使用子元素。
参数:name
The name of the sub-element about which we are querying the list of sub-tags within element.
子元素的名称,这是我们所查询的列表内的子标签element。
参数:pos
An optional argument which, if supplied, queries whether the name sub-element is valid as the pos-th child of element.
一个可选参数,如果提供的话,询问是否name子元素是有效的poselement个孩子。
Details
详细信息----------Details----------
This is not intended to be called directly, but indirectly by the dtdValidElement function.
这并不是直接调用,而是间接的dtdValidElement功能。
值----------Value----------
Logical value indicating whether the sub-element can appear in an element tag or not.
逻辑值,该值指示是否子元素可以出现在一个element标签或没有。
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
参见----------See Also----------
parseDTD, dtdValidElement, dtdElement
parseDTD,dtdValidElement,dtdElement
实例----------Examples----------
dtdFile <- system.file("exampleData", "foo.dtd",package="XML")
dtd <- parseDTD(dtdFile)
dtdElementValidEntry(dtdElement("variables",dtd), "variable")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|