本文整理匯總了C#中libsbmlcs.Species.getMetaId方法的典型用法代碼示例。如果您正苦於以下問題:C# Species.getMetaId方法的具體用法?C# Species.getMetaId怎麽用?C# Species.getMetaId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類libsbmlcs.Species
的用法示例。
在下文中一共展示了Species.getMetaId方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: test_L3_Species_createWithNS
public void test_L3_Species_createWithNS()
{
XMLNamespaces xmlns = new XMLNamespaces();
xmlns.add( "http://www.sbml.org", "testsbml");
SBMLNamespaces sbmlns = new SBMLNamespaces(3,1);
sbmlns.addNamespaces(xmlns);
Species s = new Species(sbmlns);
assertTrue( s.getTypeCode() == libsbml.SBML_SPECIES );
assertTrue( s.getMetaId() == "" );
assertTrue( s.getNotes() == null );
assertTrue( s.getAnnotation() == null );
assertTrue( s.getLevel() == 3 );
assertTrue( s.getVersion() == 1 );
assertTrue( s.getNamespaces() != null );
assertTrue( s.getNamespaces().getLength() == 2 );
assertTrue( s.getId() == "" );
assertTrue( s.getName() == "" );
assertTrue( s.getCompartment() == "" );
assertEquals( true, isnan(s.getInitialAmount()) );
assertEquals( true, isnan(s.getInitialConcentration()) );
assertTrue( s.getSubstanceUnits() == "" );
assertTrue( s.getHasOnlySubstanceUnits() == false );
assertTrue( s.getBoundaryCondition() == false );
assertTrue( s.getConstant() == false );
assertTrue( s.getConversionFactor() == "" );
assertEquals( false, s.isSetId() );
assertEquals( false, s.isSetName() );
assertEquals( false, s.isSetCompartment() );
assertEquals( false, s.isSetInitialAmount() );
assertEquals( false, s.isSetInitialConcentration() );
assertEquals( false, s.isSetSubstanceUnits() );
assertEquals( false, s.isSetHasOnlySubstanceUnits() );
assertEquals( false, s.isSetBoundaryCondition() );
assertEquals( false, s.isSetConstant() );
assertEquals( false, s.isSetConversionFactor() );
s = null;
}
示例2: test_Species_createWithNS
public void test_Species_createWithNS()
{
XMLNamespaces xmlns = new XMLNamespaces();
xmlns.add( "http://www.sbml.org", "testsbml");
SBMLNamespaces sbmlns = new SBMLNamespaces(2,1);
sbmlns.addNamespaces(xmlns);
Species object1 = new Species(sbmlns);
assertTrue( object1.getTypeCode() == libsbml.SBML_SPECIES );
assertTrue( object1.getMetaId() == "" );
assertTrue( object1.getNotes() == null );
assertTrue( object1.getAnnotation() == null );
assertTrue( object1.getLevel() == 2 );
assertTrue( object1.getVersion() == 1 );
assertTrue( object1.getNamespaces() != null );
assertTrue( object1.getNamespaces().getLength() == 2 );
object1 = null;
}