eu.mais_h.mathsync.Difference Maven / Gradle / Ivy
The newest version!
package eu.mais_h.mathsync;
import java.util.Set;
/**
* Represents the difference between two states.
*
* @param the type of added and removed items.
*/
public interface Difference {
/**
* Represents the set of items added on the remote side compared to the local state.
*
* @return the set of items added on the remote side compared to the local state.
*/
Set added();
/**
* Represents the set of items removed on the remote side compared to the local state.
*
* @return the set of items removed on the remote side compared to the local state.
*/
Set removed();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy