NewPipeExtractor/extractor/src/main/java/org/schabi/newpipe/extractor/InfoItemExtractor.java

14 lines
362 B
Java
Raw Normal View History

2017-08-11 20:21:49 +02:00
package org.schabi.newpipe.extractor;
import org.schabi.newpipe.extractor.exceptions.ParsingException;
import javax.annotation.Nonnull;
import java.util.List;
2017-08-11 20:21:49 +02:00
public interface InfoItemExtractor {
String getName() throws ParsingException;
String getUrl() throws ParsingException;
@Nonnull
List<Image> getThumbnails() throws ParsingException;
2017-08-11 20:21:49 +02:00
}