本文整理汇总了C++中Attr::getNodeType方法的典型用法代码示例。如果您正苦于以下问题:C++ Attr::getNodeType方法的具体用法?C++ Attr::getNodeType怎么用?C++ Attr::getNodeType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Attr
的用法示例。
在下文中一共展示了Attr::getNodeType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: runTest
/*
* Runs the test case.
*/
void runTest()
{
Document doc;
NodeList elementList;
Element testAddr;
Attr addrAttr;
int nodeType;
doc = (Document) baseT::load("hc_staff", false);
elementList = doc.getElementsByTagName(SA::construct_from_utf8("acronym"));
testAddr = (Element) elementList.item(0);
addrAttr = testAddr.getAttributeNode(SA::construct_from_utf8("title"));
nodeType = (int) addrAttr.getNodeType();
baseT::assertEquals(2, nodeType, __LINE__, __FILE__);
}
示例2: runTest
/*
* Runs the test case.
*/
void runTest()
{
Document doc;
Attr newAttrNode;
String attrValue;
String attrName;
int attrType;
doc = (Document) baseT::load("staff", true);
newAttrNode = doc.createAttribute(SA::construct_from_utf8("district"));
attrValue = newAttrNode.getNodeValue();
baseT::assertEquals("", attrValue, __LINE__, __FILE__);
attrName = newAttrNode.getNodeName();
baseT::assertEquals("district", attrName, __LINE__, __FILE__);
attrType = (int) newAttrNode.getNodeType();
baseT::assertEquals(2, attrType, __LINE__, __FILE__);
}