nl.vpro.domain.media.support.OwnableListItem Maven / Gradle / Ivy
package nl.vpro.domain.media.support;
import nl.vpro.domain.Child;
/**
* An item in a {@link OwnableList}, that is, it is a {@link Child} of that.
*
* It also is {@link Comparable}, though this is not actually essential,
*
* @author Michiel Meeuwissen
* @since 5.11
* @param The self type reference.
* @param The parent list type
*/
public interface OwnableListItem, P extends OwnableList>
extends Child
, Comparable {
}