uk.co.caprica.mediascanner.progress.MediaScannerProgressAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-scanner Show documentation
Show all versions of media-scanner Show documentation
Scan directories recursively for media, with pluggable title and meta-data parsing.
The newest version!
package uk.co.caprica.mediascanner.progress;
import uk.co.caprica.mediascanner.domain.MediaEntry;
public class MediaScannerProgressAdapter implements MediaScannerProgress {
@Override
public void found(MediaEntry entry) {
}
@Override
public void beforeGetMeta(int current, int total, MediaEntry entry) {
}
@Override
public void afterGetMeta(int current, int total, MediaEntry entry) {
}
}