Update comments

pull/190/head
Vasiliy 2019-09-11 19:03:53 +03:00
rodzic b55c05d04f
commit ecb8ad85a1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 9F74C4D2874D7523
2 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -22,6 +22,9 @@ public final class Frameset {
this.framesPerPageY = framesPerPageY;
}
/**
* @return list of urls to images with frames
*/
public List<String> getUrls() {
return urls;
}

Wyświetl plik

@ -259,8 +259,10 @@ public abstract class StreamExtractor extends Extractor {
public abstract StreamInfoItemsCollector getRelatedStreams() throws IOException, ExtractionException;
/**
* Should return a list of frames
* @return
* Should return a list of Frameset object that contains preview of stream frames
* @return list of preview frames or empty list if frames preview is not supported or not found for specified stream
* @throws IOException
* @throws ExtractionException
*/
@Nonnull
public List<Frameset> getFrames() throws IOException, ExtractionException {