Path: blob/master/test/jdk/java/util/ResourceBundle/FakeTestResource.java
41149 views
/*1* Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/22/*23*24*25* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved26* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved27*28* Portions copyright (c) 2007 Sun Microsystems, Inc.29* All Rights Reserved.30*31* The original version of this source code and documentation32* is copyrighted and owned by Taligent, Inc., a wholly-owned33* subsidiary of IBM. These materials are provided under terms34* of a License Agreement between Taligent and Sun. This technology35* is protected by multiple US and International patents.36*37* This notice and attribution to Taligent may not be removed.38* Taligent is a registered trademark of Taligent, Inc.39*40* Permission to use, copy, modify, and distribute this software41* and its documentation for NON-COMMERCIAL purposes and without42* fee is hereby granted provided that this copyright notice43* appears in all copies. Please refer to the file "copyright.html"44* for further important copyright and licensing information.45*46* SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF47* THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED48* TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A49* PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR50* ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR51* DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.52*53*/5455// NOTE: This class is part of the ResourceBundleTest.56// The ResourceBundle code should never find this class, even if the caller looks57// for "FakeTestResource". If it does, that's an error.5859public class FakeTestResource {60public FakeTestResource() {61}62}636465