libsbmlcs.SpeciesType.getId C# (CSharp) Method

getId() public method

public getId ( ) : string
return string
        public new string getId()
        {
            string ret = libsbmlPINVOKE.SpeciesType_getId(swigCPtr);
            return ret;
        }

Usage Example

Exemplo n.º 1
0
 public void test_SpeciesType_copyConstructor()
 {
     SpeciesType o1 = new SpeciesType(2,4);
       o1.setId("c");
       assertTrue( o1.getId() ==  "c" );
       SpeciesType o2 = new SpeciesType(o1);
       assertTrue( o2.getId() ==  "c" );
       assertTrue( o2.getParentSBMLObject() == o1.getParentSBMLObject() );
       o2 = null;
       o1 = null;
 }
All Usage Examples Of libsbmlcs.SpeciesType::getId