Interface IEqualityHelper

    • Method Detail

      • matchingValues

        boolean matchingValues​(Object object1,
                               Object object2)
        Check that the two given values are "equal", considering the specifics of EMF.
        Parameters:
        object1 - First of the two objects to compare here.
        object2 - Second of the two objects to compare here.
        Returns:
        true if both objects are to be considered equal, false otherwise.
      • matchingAttributeValues

        boolean matchingAttributeValues​(Object object1,
                                        Object object2)
        This should only be used if the two given Objects are known not to be instances of EObjects. EObjects passed for comparison through here will be compared through their Object.equals(Object) implementation.
        Parameters:
        object1 - First of the two objects to compare here.
        object2 - Second of the two objects to compare here.
        Returns:
        true if both objects are to be considered equal, false otherwise.