libsbml.Model.getListOfFunctionDefinitions C# (CSharp) Method

getListOfFunctionDefinitions() public method

public getListOfFunctionDefinitions ( ) : ListOfFunctionDefinitions
return ListOfFunctionDefinitions
        public ListOfFunctionDefinitions getListOfFunctionDefinitions()
        {
            IntPtr cPtr = libsbmlPINVOKE.Model_getListOfFunctionDefinitions__SWIG_0(swigCPtr);
            ListOfFunctionDefinitions ret = (cPtr == IntPtr.Zero) ? null : new ListOfFunctionDefinitions(cPtr, false);
            return ret;
        }

Usage Example

 public void test_FunctionDefinition_parent_create()
 {
     Model m = new Model(2,4);
       FunctionDefinition fd = m.createFunctionDefinition();
       ListOf lo = m.getListOfFunctionDefinitions();
       assertTrue( lo == m.getFunctionDefinition(0).getParentSBMLObject() );
       assertTrue( lo == fd.getParentSBMLObject() );
       assertTrue( m == lo.getParentSBMLObject() );
 }
All Usage Examples Of libsbml.Model::getListOfFunctionDefinitions
Model