X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Flibrary%2FBasicLibrary.java;h=099859dcfaffed075f30b3d716b790f644a43a09;hb=c4cefaa04ec122fc02efb6542451a31fdf722c32;hp=3e3756fe90d1677ac2b9820bf300b10cc3b484ea;hpb=0bb51c9c66697fe63ba066715207deabbcc1d479;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/library/BasicLibrary.java b/src/be/nikiroo/fanfix/library/BasicLibrary.java index 3e3756f..099859d 100644 --- a/src/be/nikiroo/fanfix/library/BasicLibrary.java +++ b/src/be/nikiroo/fanfix/library/BasicLibrary.java @@ -191,8 +191,8 @@ abstract public class BasicLibrary { * @throws IOException * in case of IOException */ - public Image getCustomSourceCover(@SuppressWarnings("unused") String source) - throws IOException { + @SuppressWarnings("unused") + public Image getCustomSourceCover(String source) throws IOException { return null; } @@ -209,8 +209,8 @@ abstract public class BasicLibrary { * @throws IOException * in case of IOException */ - public Image getCustomAuthorCover(@SuppressWarnings("unused") String author) - throws IOException { + @SuppressWarnings("unused") + public Image getCustomAuthorCover(String author) throws IOException { return null; } @@ -328,9 +328,6 @@ abstract public class BasicLibrary { * * @param pg * the optional progress reporter - * - * @throws IOException - * in case of IOException */ public void refresh(Progress pg) { try { @@ -525,13 +522,9 @@ abstract public class BasicLibrary { * the starting character, *, 0 or a capital * letter * - * @return the authors that fulfill the starting letter - * - * @throws IOException - * in case of IOException + * @return the authors that fulfil the starting letter */ - private List getAuthorsGroup(List authors, char car) - throws IOException { + private List getAuthorsGroup(List authors, char car) { List accepted = new ArrayList(); for (String author : authors) { char first = '*'; @@ -758,14 +751,14 @@ abstract public class BasicLibrary { * @param pg * the optional progress reporter * - * @return the imported {@link Story} + * @return the imported Story {@link MetaData} * * @throws UnknownHostException * if the host is not supported * @throws IOException * in case of I/O error */ - public Story imprt(URL url, Progress pg) throws IOException { + public MetaData imprt(URL url, Progress pg) throws IOException { if (pg == null) pg = new Progress(); @@ -783,7 +776,7 @@ abstract public class BasicLibrary { Story story = save(support.process(pgProcess), pgSave); pg.done(); - return story; + return story.getMeta(); } /**