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

nl.vpro.domain.subtitles.CueId Maven / Gradle / Ivy

Go to download

Subtitles are related to media, but are implemented completely parallel. Classes to contain, parse, and assemble subtitle objects are here.

The newest version!
package nl.vpro.domain.subtitles;

import lombok.Getter;

/**
 * @author Michiel Meeuwissen
 * @since 5.12
 */
@Getter
public class CueId  {

    private final SubtitlesId subtitlesId;

    private final Integer sequence;

    public CueId(SubtitlesId subtitlesId, Integer sequence) {
        this.subtitlesId = subtitlesId;
        this.sequence = sequence;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy