4945N/A/*
4945N/A * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
4945N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4945N/A *
4945N/A * This code is free software; you can redistribute it and/or modify it
4945N/A * under the terms of the GNU General Public License version 2 only, as
4945N/A * published by the Free Software Foundation. Oracle designates this
4945N/A * particular file as subject to the "Classpath" exception as provided
4945N/A * by Oracle in the LICENSE file that accompanied this code.
4945N/A *
4945N/A * This code is distributed in the hope that it will be useful, but WITHOUT
4945N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4945N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4945N/A * version 2 for more details (a copy is included in the LICENSE file that
4945N/A * accompanied this code).
4945N/A *
4945N/A * You should have received a copy of the GNU General Public License version
4945N/A * 2 along with this work; if not, write to the Free Software Foundation,
4945N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4945N/A *
4945N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4945N/A * or visit www.oracle.com if you need additional information or have any
4945N/A * questions.
4945N/A */
4945N/Apackage java.lang;
4945N/A
4945N/Aimport java.io.File;
4945N/A
4945N/Aclass ClassLoaderHelper {
4945N/A
4945N/A private ClassLoaderHelper() {}
4945N/A
4945N/A /**
4945N/A * Returns an alternate path name for the given file
4945N/A * such that if the original pathname did not exist, then the
4945N/A * file may be located at the alternate location.
4945N/A * For most platforms, this behavior is not supported and returns null.
4945N/A */
4945N/A static File mapAlternativeName(File lib) {
4945N/A return null;
4945N/A }
4945N/A}