コード例 #1
0
ファイル: mo.py プロジェクト: bischatt78/cobra
    def isPropDirty(self, propName):
        """Check if a property has been modified on this managed object.

        Args:
          propName (str): The property name as a string

        Returns:
          bool: True if the property has been modified and not commited, False
            otherwise
        """
        return BaseMo._isPropDirty(self, propName)
コード例 #2
0
    def isPropDirty(self, propName):
        """Check if a property has been modified on this managed object.

        Args:
          propName (str): The property name as a string

        Returns:
          bool: True if the property has been modified and not commited, False
            otherwise
        """
        return BaseMo._isPropDirty(self, propName)
コード例 #3
0
 def isPropDirty(self, propName):
     """
     Returns a value indicating whether a given property has a new value that has not been committed.
     """    
     return BaseMo._isPropDirty(self, propName)
コード例 #4
0
ファイル: mo.py プロジェクト: tm0nk/cobra-j
 def isPropDirty(self, propName):
     """
     Returns a value indicating whether a given property has a new value that has not been committed.
     """    
     return BaseMo._isPropDirty(self, propName)