libsbml.AlgebraicRule.hasRequiredAttributes C# (CSharp) Method

hasRequiredAttributes() public method

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

Usage Example

 public void test_AlgebraicRule_L1()
 {
     AlgebraicRule ar = new AlgebraicRule(1,2);
       assertEquals( false, (ar.hasRequiredAttributes()) );
       ar.setFormula("ar");
       assertEquals( true, ar.hasRequiredAttributes() );
       ar = null;
 }
All Usage Examples Of libsbml.AlgebraicRule::hasRequiredAttributes