
com.cedarsoft.utils.DeletionProcessor Maven / Gradle / Ivy
The newest version!
package com.cedarsoft.utils;
import org.jetbrains.annotations.NotNull;
/**
* Will be notified whenever an object will be deleted.
*/
public interface DeletionProcessor {
/**
* Is called whenever the object will be deleted
*
* @param object the object that will be deleted
*/
void willBeDeleted( @NotNull T object );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy