本文整理汇总了C#中libsbmlcs.XMLNamespaces.clear方法的典型用法代码示例。如果您正苦于以下问题:C# XMLNamespaces.clear方法的具体用法?C# XMLNamespaces.clear怎么用?C# XMLNamespaces.clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类libsbmlcs.XMLNamespaces
的用法示例。
在下文中一共展示了XMLNamespaces.clear方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: test_SyntaxChecker_validXHTML
public void test_SyntaxChecker_validXHTML()
{
SBMLNamespaces NS24 = new SBMLNamespaces(2,4);
SBMLNamespaces NS31 = new SBMLNamespaces(3,1);
XMLToken toptoken;
XMLNode topnode;
XMLTriple toptriple = new XMLTriple("notes", "", "");
XMLToken token;
XMLNode node;
XMLTriple triple = new XMLTriple("p", "", "");
XMLAttributes att = new XMLAttributes();
XMLNamespaces ns = new XMLNamespaces();
ns.add( "http://www.w3.org/1999/xhtml", "");
XMLToken tt = new XMLToken("This is my text");
XMLNode n1 = new XMLNode(tt);
toptoken = new XMLToken(toptriple,att);
topnode = new XMLNode(toptoken);
token = new XMLToken(triple,att,ns);
node = new XMLNode(token);
node.addChild(n1);
topnode.addChild(node);
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,null) == true );
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,NS24) == true );
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,NS31) == true );
triple = new XMLTriple("html", "", "");
token = new XMLToken(triple,att,ns);
node = new XMLNode(token);
node.addChild(n1);
topnode.removeChild(0);
topnode.addChild(node);
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,null) == true );
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,NS24) == false );
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,NS31) == true );
triple = new XMLTriple("html", "", "");
ns.clear();
token = new XMLToken(triple,att,ns);
node = new XMLNode(token);
node.addChild(n1);
topnode.removeChild(0);
topnode.addChild(node);
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,null) == false );
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,NS24) == false );
assertTrue( SyntaxChecker.hasExpectedXHTMLSyntax(topnode,NS31) == false );
}
示例2: test_SBase_hasValidLevelVersionNamespaceCombination
public void test_SBase_hasValidLevelVersionNamespaceCombination()
{
Species species = new Species (3, 1);
assertTrue (species.hasValidLevelVersionNamespaceCombination () == true);
species = null;
XMLNamespaces invalidNamespaces = new XMLNamespaces ();
species = new Species (3, 1);
species.setNamespaces (invalidNamespaces);
[email protected] (SBMLNamespaces.getSBMLNamespaceURI (2, 3), "sbml23");
species.setNamespaces (invalidNamespaces);
assertTrue (species.hasValidLevelVersionNamespaceCombination () == false);
[email protected] (SBMLNamespaces.getSBMLNamespaceURI (3, 1), "sbml31");
species.setNamespaces (invalidNamespaces);
assertTrue (species.hasValidLevelVersionNamespaceCombination () == false);
invalidNamespaces.clear ();
[email protected] (SBMLNamespaces.getSBMLNamespaceURI (3, 1), "sbml31");
species.setNamespaces (invalidNamespaces);
assertTrue (species.hasValidLevelVersionNamespaceCombination () == true);
species = null;
}