X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fsrc%2Forg%2Fwamblee%2Fio%2FInputResource.java;h=f5e8496581e2193469ed0bcd1de2a8800f7fc674;hb=8f2d78e446f48a1ed156b252998ae17cd6f0ba2b;hp=aa4fb91cb10bbf90807294f4265f4f49d148fa42;hpb=caa126385642ffc57478e928ab871bc09c53e993;p=utils diff --git a/support/src/org/wamblee/io/InputResource.java b/support/src/org/wamblee/io/InputResource.java index aa4fb91c..f5e84965 100644 --- a/support/src/org/wamblee/io/InputResource.java +++ b/support/src/org/wamblee/io/InputResource.java @@ -12,23 +12,23 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ package org.wamblee.io; import java.io.IOException; import java.io.InputStream; - /** * Represents a resource from which information can be read. */ public interface InputResource { /** - * Gets the input stream to the resource. The obtained input stream - * must be closed once reading has finished. + * Gets the input stream to the resource. The obtained input stream must be + * closed once reading has finished. * * @return Input stream to the resource, never null. - * @throws IOException in case the resource cannot be found. + * @throws IOException + * in case the resource cannot be found. */ - InputStream getInputStream( ) throws IOException; + InputStream getInputStream() throws IOException; }