1 /* 2 * Copyright (C) The Apache Software Foundation. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the LICENSE.txt file. 7 */ 8 package org.apache.avalon.excalibur.i18n; 9 10 /** 11 * Used to map locale information to URI space, to find the relevant bundle. 12 * 13 * @author <a HREF="mailto:neeme@apache.org">Neeme Praks</a> 14 * @version CVS $Revision: 1.5 $ $Date: 2002/01/02 19:04:56 $ $Author: neeme $ 15 */ 16 public interface BundleLoader { 17 /** 18 * Load a bundle, based on bundleInfo. 19 * 20 * @return the bundle 21 */ 22 void preload(); 23 24 } 25