本文整理匯總了C#中libsbmlcs.XMLToken.setNamespaces方法的典型用法代碼示例。如果您正苦於以下問題:C# XMLToken.setNamespaces方法的具體用法?C# XMLToken.setNamespaces怎麽用?C# XMLToken.setNamespaces使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類libsbmlcs.XMLToken
的用法示例。
在下文中一共展示了XMLToken.setNamespaces方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: test_XMLToken_newSetters_setNamespaces1
public void test_XMLToken_newSetters_setNamespaces1()
{
XMLTriple triple = new XMLTriple("test","","");
XMLAttributes attr = new XMLAttributes();
XMLToken token = new XMLToken(triple,attr);
XMLNamespaces ns = new XMLNamespaces();
assertTrue( token.getNamespacesLength() == 0 );
assertTrue( token.isNamespacesEmpty() == true );
ns.add( "http://test1.org/", "test1");
int i = token.setNamespaces(ns);
assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
assertTrue( token.getNamespacesLength() == 1 );
assertTrue( token.isNamespacesEmpty() == false );
attr = null;
triple = null;
token = null;
ns = null;
}
示例2: test_XMLToken_newSetters_setNamespaces2
public void test_XMLToken_newSetters_setNamespaces2()
{
int i;
XMLTriple triple = new XMLTriple("test","","");
XMLToken token = new XMLToken(triple);
XMLNamespaces ns = new XMLNamespaces();
assertTrue( token.getNamespacesLength() == 0 );
assertTrue( token.isNamespacesEmpty() == true );
ns.add( "http://test1.org/", "test1");
i = token.setNamespaces(ns);
assertTrue( i == libsbml.LIBSBML_INVALID_XML_OPERATION );
assertTrue( token.getNamespacesLength() == 0 );
assertTrue( token.isNamespacesEmpty() == true );
triple = null;
token = null;
ns = null;
}
示例3: test_XMLToken_namespace_set_clear
public void test_XMLToken_namespace_set_clear()
{
XMLTriple triple = new XMLTriple("test","","");
XMLAttributes attr = new XMLAttributes();
XMLToken token = new XMLToken(triple,attr);
XMLNamespaces ns = new XMLNamespaces();
assertTrue( token.getNamespacesLength() == 0 );
assertTrue( token.isNamespacesEmpty() == true );
ns.add( "http://test1.org/", "test1");
ns.add( "http://test2.org/", "test2");
ns.add( "http://test3.org/", "test3");
ns.add( "http://test4.org/", "test4");
ns.add( "http://test5.org/", "test5");
token.setNamespaces(ns);
assertTrue( token.getNamespacesLength() == 5 );
assertTrue( token.isNamespacesEmpty() == false );
assertTrue( ( "test1" != token.getNamespacePrefix(0) ) == false );
assertTrue( ( "test2" != token.getNamespacePrefix(1) ) == false );
assertTrue( ( "test3" != token.getNamespacePrefix(2) ) == false );
assertTrue( ( "test4" != token.getNamespacePrefix(3) ) == false );
assertTrue( ( "test5" != token.getNamespacePrefix(4) ) == false );
assertTrue( ( "http://test1.org/" != token.getNamespaceURI(0) ) == false );
assertTrue( ( "http://test2.org/" != token.getNamespaceURI(1) ) == false );
assertTrue( ( "http://test3.org/" != token.getNamespaceURI(2) ) == false );
assertTrue( ( "http://test4.org/" != token.getNamespaceURI(3) ) == false );
assertTrue( ( "http://test5.org/" != token.getNamespaceURI(4) ) == false );
token.clearNamespaces();
assertTrue( token.getNamespacesLength() == 0 );
ns = null;
token = null;
triple = null;
attr = null;
}