| 20 | {} |
| 21 | |
| 22 | void LibraryNodes::openNode ( const String &nodeId, const String &nodeName ) |
| 23 | { |
| 24 | // opening library here. TBH this looks weird and should |
| 25 | // just be an explicit client call. |
| 26 | openLibrary(); |
| 27 | |
| 28 | // create tag closer |
| 29 | mCurrentNodeCloser = mSW->openElement ( CSWC::CSW_ELEMENT_NODE ); |
| 30 | |
| 31 | if ( !nodeId.empty() ) |
| 32 | mSW->appendAttribute ( CSWC::CSW_ATTRIBUTE_ID, nodeId ); |
| 33 | |
| 34 | if ( !nodeName.empty() ) |
| 35 | mSW->appendAttribute ( CSWC::CSW_ATTRIBUTE_NAME, nodeName ); |
| 36 | } |
| 37 | |
| 38 | void LibraryNodes::closeNode() |
| 39 | { |
nothing calls this directly
no test coverage detected