本文整理汇总了C#中libsbmlcs.XMLNode.addNamespace方法的典型用法代码示例。如果您正苦于以下问题:C# XMLNode.addNamespace方法的具体用法?C# XMLNode.addNamespace怎么用?C# XMLNode.addNamespace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类libsbmlcs.XMLNode
的用法示例。
在下文中一共展示了XMLNode.addNamespace方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: test_XMLNode_removeNamespaces
public void test_XMLNode_removeNamespaces()
{
XMLTriple triple = new XMLTriple("test","","");
XMLAttributes attr = new XMLAttributes();
XMLNode node = new XMLNode(triple,attr);
XMLNamespaces nms;
int i = node.addNamespace( "http://test1.org/", "test1");
assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
nms = node.getNamespaces();
assertTrue( nms.getLength() == 1 );
i = node.addNamespace( "http://test2.org/", "test2");
assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
nms = node.getNamespaces();
assertTrue( nms.getLength() == 2 );
i = node.removeNamespace(7);
assertTrue( i == libsbml.LIBSBML_INDEX_EXCEEDS_SIZE );
nms = node.getNamespaces();
assertTrue( nms.getLength() == 2 );
i = node.removeNamespace( "name7");
assertTrue( i == libsbml.LIBSBML_INDEX_EXCEEDS_SIZE );
nms = node.getNamespaces();
assertTrue( nms.getLength() == 2 );
i = node.removeNamespace(0);
assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
nms = node.getNamespaces();
assertTrue( nms.getLength() == 1 );
i = node.removeNamespace( "test2");
assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
nms = node.getNamespaces();
assertTrue( nms.getLength() == 0 );
triple = null;
attr = null;
node = null;
}
示例2: test_XMLNode_namespace_get
public void test_XMLNode_namespace_get()
{
XMLTriple triple = new XMLTriple("test","","");
XMLAttributes attr = new XMLAttributes();
XMLNode node = new XMLNode(triple,attr);
node.addNamespace( "http://test1.org/", "test1");
node.addNamespace( "http://test2.org/", "test2");
node.addNamespace( "http://test3.org/", "test3");
node.addNamespace( "http://test4.org/", "test4");
node.addNamespace( "http://test5.org/", "test5");
node.addNamespace( "http://test6.org/", "test6");
node.addNamespace( "http://test7.org/", "test7");
node.addNamespace( "http://test8.org/", "test8");
node.addNamespace( "http://test9.org/", "test9");
assertTrue( node.getNamespacesLength() == 9 );
assertTrue( node.getNamespaceIndex( "http://test1.org/") == 0 );
assertTrue( ( "test2" != node.getNamespacePrefix(1) ) == false );
assertTrue( ( "test1" != node.getNamespacePrefix( "http://test1.org/") ) == false );
assertTrue( ( "http://test2.org/" != node.getNamespaceURI(1) ) == false );
assertTrue( ( "http://test2.org/" != node.getNamespaceURI( "test2") ) == false );
assertTrue( node.getNamespaceIndex( "http://test1.org/") == 0 );
assertTrue( node.getNamespaceIndex( "http://test2.org/") == 1 );
assertTrue( node.getNamespaceIndex( "http://test5.org/") == 4 );
assertTrue( node.getNamespaceIndex( "http://test9.org/") == 8 );
assertTrue( node.getNamespaceIndex( "http://testX.org/") == -1 );
assertTrue( node.hasNamespaceURI( "http://test1.org/") != false );
assertTrue( node.hasNamespaceURI( "http://test2.org/") != false );
assertTrue( node.hasNamespaceURI( "http://test5.org/") != false );
assertTrue( node.hasNamespaceURI( "http://test9.org/") != false );
assertTrue( node.hasNamespaceURI( "http://testX.org/") == false );
assertTrue( node.getNamespaceIndexByPrefix( "test1") == 0 );
assertTrue( node.getNamespaceIndexByPrefix( "test5") == 4 );
assertTrue( node.getNamespaceIndexByPrefix( "test9") == 8 );
assertTrue( node.getNamespaceIndexByPrefix( "testX") == -1 );
assertTrue( node.hasNamespacePrefix( "test1") != false );
assertTrue( node.hasNamespacePrefix( "test5") != false );
assertTrue( node.hasNamespacePrefix( "test9") != false );
assertTrue( node.hasNamespacePrefix( "testX") == false );
assertTrue( node.hasNamespaceNS( "http://test1.org/", "test1") != false );
assertTrue( node.hasNamespaceNS( "http://test5.org/", "test5") != false );
assertTrue( node.hasNamespaceNS( "http://test9.org/", "test9") != false );
assertTrue( node.hasNamespaceNS( "http://testX.org/", "testX") == false );
node = null;
triple = null;
attr = null;
}
示例3: test_XMLNode_namespace_remove_by_prefix
public void test_XMLNode_namespace_remove_by_prefix()
{
XMLTriple triple = new XMLTriple("test","","");
XMLAttributes attr = new XMLAttributes();
XMLNode node = new XMLNode(triple,attr);
node.addNamespace( "http://test1.org/", "test1");
node.addNamespace( "http://test2.org/", "test2");
node.addNamespace( "http://test3.org/", "test3");
node.addNamespace( "http://test4.org/", "test4");
node.addNamespace( "http://test5.org/", "test5");
assertTrue( node.getNamespacesLength() == 5 );
node.removeNamespace( "test1");
assertTrue( node.getNamespacesLength() == 4 );
node.removeNamespace( "test2");
assertTrue( node.getNamespacesLength() == 3 );
node.removeNamespace( "test3");
assertTrue( node.getNamespacesLength() == 2 );
node.removeNamespace( "test4");
assertTrue( node.getNamespacesLength() == 1 );
node.removeNamespace( "test5");
assertTrue( node.getNamespacesLength() == 0 );
node.addNamespace( "http://test1.org/", "test1");
node.addNamespace( "http://test2.org/", "test2");
node.addNamespace( "http://test3.org/", "test3");
node.addNamespace( "http://test4.org/", "test4");
node.addNamespace( "http://test5.org/", "test5");
assertTrue( node.getNamespacesLength() == 5 );
node.removeNamespace( "test5");
assertTrue( node.getNamespacesLength() == 4 );
node.removeNamespace( "test4");
assertTrue( node.getNamespacesLength() == 3 );
node.removeNamespace( "test3");
assertTrue( node.getNamespacesLength() == 2 );
node.removeNamespace( "test2");
assertTrue( node.getNamespacesLength() == 1 );
node.removeNamespace( "test1");
assertTrue( node.getNamespacesLength() == 0 );
node.addNamespace( "http://test1.org/", "test1");
node.addNamespace( "http://test2.org/", "test2");
node.addNamespace( "http://test3.org/", "test3");
node.addNamespace( "http://test4.org/", "test4");
node.addNamespace( "http://test5.org/", "test5");
assertTrue( node.getNamespacesLength() == 5 );
node.removeNamespace( "test3");
assertTrue( node.getNamespacesLength() == 4 );
node.removeNamespace( "test1");
assertTrue( node.getNamespacesLength() == 3 );
node.removeNamespace( "test4");
assertTrue( node.getNamespacesLength() == 2 );
node.removeNamespace( "test5");
assertTrue( node.getNamespacesLength() == 1 );
node.removeNamespace( "test2");
assertTrue( node.getNamespacesLength() == 0 );
node = null;
triple = null;
attr = null;
}
示例4: test_XMLNode_namespace_add
public void test_XMLNode_namespace_add()
{
XMLTriple triple = new XMLTriple("test","","");
XMLAttributes attr = new XMLAttributes();
XMLNode node = new XMLNode(triple,attr);
assertTrue( node.getNamespacesLength() == 0 );
assertTrue( node.isNamespacesEmpty() == true );
node.addNamespace( "http://test1.org/", "test1");
assertTrue( node.getNamespacesLength() == 1 );
assertTrue( node.isNamespacesEmpty() == false );
node.addNamespace( "http://test2.org/", "test2");
assertTrue( node.getNamespacesLength() == 2 );
assertTrue( node.isNamespacesEmpty() == false );
node.addNamespace( "http://test1.org/", "test1a");
assertTrue( node.getNamespacesLength() == 3 );
assertTrue( node.isNamespacesEmpty() == false );
node.addNamespace( "http://test1.org/", "test1a");
assertTrue( node.getNamespacesLength() == 3 );
assertTrue( node.isNamespacesEmpty() == false );
assertTrue( ! (node.getNamespaceIndex( "http://test1.org/") == -1) );
node = null;
triple = null;
attr = null;
}