libsbml.SpeciesType.hasRequiredAttributes C# (CSharp) Method

hasRequiredAttributes() public method

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

Usage Example

 public void test_SpeciesType()
 {
     SpeciesType st = new SpeciesType(2,4);
       assertEquals( false, (st.hasRequiredAttributes()) );
       st.setId("st");
       assertEquals( true, st.hasRequiredAttributes() );
       st = null;
 }