| 1311 | |
| 1312 | |
| 1313 | const char* XMLElement::Attribute( const char* name, const char* value ) const |
| 1314 | { |
| 1315 | const XMLAttribute* a = FindAttribute( name ); |
| 1316 | if ( !a ) { |
| 1317 | return 0; |
| 1318 | } |
| 1319 | if ( !value || XMLUtil::StringEqual( a->Value(), value )) { |
| 1320 | return a->Value(); |
| 1321 | } |
| 1322 | return 0; |
| 1323 | } |
| 1324 | |
| 1325 | |
| 1326 | const char* XMLElement::GetText() const |
no test coverage detected