< prev index next >

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2001, 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) 2001, 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,51 **** * 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. */ - // NewInstance.java - create a new instance of a class by name. - // http://www.saxproject.org - // Written by Edwin Goei, edwingo@apache.org - // and by David Brownell, dbrownell@users.sourceforge.net - // NO WARRANTY! This class is in the Public Domain. - // $Id: NewInstance.java,v 1.2 2005/06/10 03:50:50 jeffsuttor Exp $ - package org.xml.sax.helpers; import java.lang.reflect.InvocationTargetException; import java.util.Objects; /** * Create a new instance of a class by name. * - * <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 a static method for creating an instance of a * class from an explicit class name. It tries to use the thread's context * ClassLoader if possible and falls back to using * Class.forName(String).</p> --- 21,38 ----
< prev index next >