2017-03-12 15:15:51 +00:00
|
|
|
package org.schabi.newpipe.extractor.playlist;
|
|
|
|
|
|
|
|
import org.schabi.newpipe.extractor.exceptions.ParsingException;
|
|
|
|
|
2017-06-29 18:12:55 +00:00
|
|
|
public interface PlaylistInfoItemExtractor {
|
2017-03-12 15:15:51 +00:00
|
|
|
String getThumbnailUrl() throws ParsingException;
|
2017-06-29 18:12:55 +00:00
|
|
|
String getPlaylistName() throws ParsingException;
|
2017-03-12 15:15:51 +00:00
|
|
|
String getWebPageUrl() throws ParsingException;
|
|
|
|
}
|