Esempio n. 1
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)
Esempio n. 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)
Esempio n. 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)
Esempio n. 4
0
File: mo.py Progetto: 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)