libsbmlcs.FunctionDefinition.hasRequiredAttributes C# (CSharp) Method

hasRequiredAttributes() public method

public hasRequiredAttributes ( ) : bool
return bool
        public new bool hasRequiredAttributes()
        {
            bool ret = libsbmlPINVOKE.FunctionDefinition_hasRequiredAttributes(swigCPtr);
            return ret;
        }

Usage Example

 public void test_FunctionDefinition()
 {
     FunctionDefinition fd = new FunctionDefinition(2,4);
       assertEquals( false, (fd.hasRequiredAttributes()) );
       fd.setId("fd");
       assertEquals( true, fd.hasRequiredAttributes() );
       fd = null;
 }