All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.freelibrary.iiif.presentation.v3.TemporalContentResource Maven / Gradle / Ivy

There is a newer version: 0.12.4
Show newest version

package info.freelibrary.iiif.presentation.v3;

/**
 * An interface for content resources that have temporal characteristics.
 *
 * @param  A type of temporal content resource
 */
public interface TemporalContentResource> extends ContentResource {

    /**
     * Gets the duration of this content resource.
     *
     * @return The duration of this content resource
     */
    float getDuration();

    /**
     * Sets the duration of this content resource.
     *
     * @param aDuration The duration of this content resource
     * @return This content resource
     */
    T setDuration(Number aDuration);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy