libsbml.KineticLaw.hasRequiredAttributes C# (CSharp) Method

hasRequiredAttributes() public method

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

Usage Example

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