Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

static String Impala::Util::XmlDoc::GetAttributeValue ( const DOMNamedNodeMap *const   attributes,
const char *const   attributeName 
) [inline, static]

Definition at line 184 of file XmlDoc.h.

References GetNodeValue(), and ILOG_INFO.

00186     {
00187         XMLCh* xAttribName = XMLString::transcode(attributeName);
00188         DOMNode* attrib = attributes->getNamedItem(xAttribName);
00189         XMLString::release(&xAttribName);
00190         if (attrib == 0)
00191         {
00192             ILOG_INFO("No attribute " + String(attributeName));
00193             return "";
00194         }
00195         return GetNodeValue(attrib);
00196     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:41:36 2010 for ImpalaSrc by  doxygen 1.5.1