X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FjarInputStreamProvider.java;h=86ce97412fa2f0e02116d35053ade762ce145f1b;hb=ee5064ad5cba56f7b2423e8023e5c60204ba0878;hp=6012cfde035c51578589809f92a083f41a699362;hpb=cf471c7b9d201ca597af3176975c7f845311d9a7;p=jalview.git diff --git a/src/jalview/util/jarInputStreamProvider.java b/src/jalview/util/jarInputStreamProvider.java index 6012cfd..86ce974 100644 --- a/src/jalview/util/jarInputStreamProvider.java +++ b/src/jalview/util/jarInputStreamProvider.java @@ -1,23 +1,45 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5) + * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle + * + * 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 . + */ 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. + * 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. + * 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 { +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 + * @return human readable name for datasource used when reporting any problems + * with it */ String getFilename(); -} \ No newline at end of file +}