124125126127128129130131132133134
XmlQName targetQName = (XmlQName) targetCursor.getObject(); targetQName.set( sourceQName ); Assert.assertTrue( targetQName.qNameValue().getNamespaceURI().equals( "xxx.com" ) ); // // Test the set_text function on XmlQNameImpl //
154155156157158159160161
} targetQName.set( "xxx:abc" ); Assert.assertTrue( targetQName.qNameValue().getNamespaceURI().equals( "xxx.com" ) ); } }
8384858687888990919293
113114115116117118119120