X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FjarInputStreamProvider.java;h=828a72f204cff36b20b1423df02889aa8b3c41ad;hb=9d6a8dc7426c9a27fd9cd702805c1797e7f78c3f;hp=6012cfde035c51578589809f92a083f41a699362;hpb=cf471c7b9d201ca597af3176975c7f845311d9a7;p=jalview.git diff --git a/src/jalview/util/jarInputStreamProvider.java b/src/jalview/util/jarInputStreamProvider.java index 6012cfd..828a72f 100644 --- a/src/jalview/util/jarInputStreamProvider.java +++ b/src/jalview/util/jarInputStreamProvider.java @@ -1,23 +1,48 @@ -package jalview.util; - -import java.io.IOException; -import java.util.jar.JarInputStream; - -/** - * input stream provider interface to be implemented - * by any non-file or URL datasources so that all Jar entries - * can be read from the datasource by repeatedly re-opening the JarInputStream. - * - * This is a workaround necessary because castor's unmarshaller will close the input stream after an unmarshalling session, which normally closes the whole Jar input stream, not just the current JarEntry's stream. - */ -public interface jarInputStreamProvider { - /** - * @return properly initialized jar input stream - */ - JarInputStream getJarInputStream() throws IOException; - /** - * - * @return human readable name for datasource used when reporting any problems with it - */ - String getFilename(); -} \ No newline at end of file +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ +package jalview.util; + +import java.io.IOException; +import java.util.jar.JarInputStream; + +/** + * input stream provider interface to be implemented by any non-file or URL + * datasources so that all Jar entries can be read from the datasource by + * repeatedly re-opening the JarInputStream. + * + * This is a workaround necessary because castor's unmarshaller will close the + * input stream after an unmarshalling session, which normally closes the whole + * Jar input stream, not just the current JarEntry's stream. + */ +public interface jarInputStreamProvider +{ + /** + * @return properly initialized jar input stream + */ + JarInputStream getJarInputStream() throws IOException; + + /** + * + * @return human readable name for datasource used when reporting any problems + * with it + */ + String getFilename(); +}