libsbmlcs.FunctionDefinition.getTypeCode C# (CSharp) Method

getTypeCode() public method

public getTypeCode ( ) : int
return int
        public new int getTypeCode()
        {
            int ret = libsbmlPINVOKE.FunctionDefinition_getTypeCode(swigCPtr);
            return ret;
        }

Usage Example

 public void test_FunctionDefinition_createWith()
 {
     ASTNode math = libsbml.parseFormula("lambda(x, x^3)");
       FunctionDefinition fd = new  FunctionDefinition(2,4);
       fd.setId( "pow3");
       fd.setMath(math);
       ASTNode math1;
       string formula;
       assertTrue( fd.getTypeCode() == libsbml.SBML_FUNCTION_DEFINITION );
       assertTrue( fd.getMetaId() == "" );
       assertTrue( fd.getNotes() == null );
       assertTrue( fd.getAnnotation() == null );
       assertTrue( fd.getName() == "" );
       math1 = fd.getMath();
       assertTrue( math1 != null );
       formula = libsbml.formulaToString(math1);
       assertTrue( formula != null );
       assertTrue((  "lambda(x, x^3)" == formula ));
       assertTrue( fd.getMath() != math );
       assertEquals( true, fd.isSetMath() );
       assertTrue((  "pow3" == fd.getId() ));
       assertEquals( true, fd.isSetId() );
       math = null;
       fd = null;
 }
All Usage Examples Of libsbmlcs.FunctionDefinition::getTypeCode