libsbmlcs.ModelHistory.getListCreators C# (CSharp) Method

getListCreators() public method

public getListCreators ( ) : ModelCreatorList
return ModelCreatorList
        public ModelCreatorList getListCreators()
        {
            IntPtr cPtr = libsbmlPINVOKE.ModelHistory_getListCreators(swigCPtr);
              return (cPtr == IntPtr.Zero) ? null : new ModelCreatorList(cPtr, true);
        }

Usage Example

 public void test_ModelHistory_create()
 {
     ModelHistory history = new  ModelHistory();
       assertTrue( history != null );
       assertTrue( history.getListCreators() != null );
       assertTrue( history.getCreatedDate() == null );
       assertTrue( history.getModifiedDate() == null );
       history = null;
 }
All Usage Examples Of libsbmlcs.ModelHistory::getListCreators