- Refactor info classes and extractors - Reformat and fix indentation - Organize packages and classes - Rename variables/methods and fix regex - Change the capitalization - Add methods to playlist extractor
10 lines
321 B
Java
10 lines
321 B
Java
package org.schabi.newpipe.extractor.playlist;
|
|
|
|
import org.schabi.newpipe.extractor.exceptions.ParsingException;
|
|
|
|
public interface PlaylistInfoItemExtractor {
|
|
String getThumbnailUrl() throws ParsingException;
|
|
String getPlaylistName() throws ParsingException;
|
|
String getWebPageUrl() throws ParsingException;
|
|
}
|