Update comments

This commit is contained in:
Vasiliy 2019-09-11 19:03:53 +03:00
parent b55c05d04f
commit ecb8ad85a1
No known key found for this signature in database
GPG Key ID: 9F74C4D2874D7523
2 changed files with 7 additions and 2 deletions

View File

@ -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;
}

View File

@ -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 {