< prev index next >

src/java.xml/share/classes/org/xml/sax/helpers/XMLReaderFactory.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 2017, 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) 2000, 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
*** 21,37 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ - // XMLReaderFactory.java - factory for creating a new reader. - // http://www.saxproject.org - // Written by David Megginson - // and by David Brownell - // NO WARRANTY! This class is in the Public Domain. - // $Id: XMLReaderFactory.java,v 1.2.2.1 2005/07/31 22:48:08 jeffsuttor Exp $ - package org.xml.sax.helpers; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; --- 21,30 ----
*** 48,64 **** /** * Factory for creating an XML reader. * - * <blockquote> - * <em>This module, both source code and documentation, is in the - * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em> - * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a> - * for further information. - * </blockquote> - * * <p>This class contains static methods for creating an XML reader * from an explicit class name, or based on runtime defaults: * * <pre> * try { --- 41,50 ----
< prev index next >