libsbmlcs.CompartmentType.hasRequiredAttributes C# (CSharp) Method

hasRequiredAttributes() public method

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

Usage Example

コード例 #1
0
 public void test_CompartmentType()
 {
     CompartmentType ct = new CompartmentType(2,4);
       assertEquals( false, (ct.hasRequiredAttributes()) );
       ct.setId("c");
       assertEquals( true, ct.hasRequiredAttributes() );
       ct = null;
 }