< prev index next >

src/java.base/share/classes/java/net/ContentHandler.java

Print this page
rev 56290 : 8230648: Replace @exception tag with @throws in java.base
Summary: Minor coding style update of javadoc tag in any file in java.base
Reviewed-by: prappo, lancea

*** 1,7 **** /* ! * Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 88,98 **** * representation of an object, this method reads that stream and * creates an object from it. * * @param urlc a URL connection. * @return the object read by the {@code ContentHandler}. ! * @exception IOException if an I/O error occurs while reading the object. */ public abstract Object getContent(URLConnection urlc) throws IOException; /** * Given a URL connect stream positioned at the beginning of the --- 88,98 ---- * representation of an object, this method reads that stream and * creates an object from it. * * @param urlc a URL connection. * @return the object read by the {@code ContentHandler}. ! * @throws IOException if an I/O error occurs while reading the object. */ public abstract Object getContent(URLConnection urlc) throws IOException; /** * Given a URL connect stream positioned at the beginning of the
*** 106,116 **** * @param urlc a URL connection. * @param classes an array of types requested * @return the object read by the {@code ContentHandler} that is * the first match of the suggested types or * {@code null} if none of the requested are supported. ! * @exception IOException if an I/O error occurs while reading the object. * @since 1.3 */ @SuppressWarnings("rawtypes") public Object getContent(URLConnection urlc, Class[] classes) throws IOException { Object obj = getContent(urlc); --- 106,116 ---- * @param urlc a URL connection. * @param classes an array of types requested * @return the object read by the {@code ContentHandler} that is * the first match of the suggested types or * {@code null} if none of the requested are supported. ! * @throws IOException if an I/O error occurs while reading the object. * @since 1.3 */ @SuppressWarnings("rawtypes") public Object getContent(URLConnection urlc, Class[] classes) throws IOException { Object obj = getContent(urlc);
< prev index next >