01: /*
02: * This file is part of DrFTPD, Distributed FTP Daemon.
03: *
04: * DrFTPD is free software; you can redistribute it and/or modify
05: * it under the terms of the GNU General Public License as published by
06: * the Free Software Foundation; either version 2 of the License, or
07: * (at your option) any later version.
08: *
09: * DrFTPD is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12: * GNU General Public License for more details.
13: *
14: * You should have received a copy of the GNU General Public License
15: * along with DrFTPD; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: */
18: package net.sf.drftpd.util;
19:
20: import org.apache.log4j.Logger;
21:
22: import org.tanesha.replacer.FormatterException;
23: import org.tanesha.replacer.ReplacerEnvironment;
24: import org.tanesha.replacer.ReplacerFormat;
25: import org.tanesha.replacer.SimplePrintf;
26:
27: import java.util.ResourceBundle;
28:
29: /**
30: * @author mog
31: * @version $Id: ReplacerUtils.java 714 2004-10-05 02:11:26Z mog $
32: */
33: public class ReplacerUtils {
34: private static final Logger logger = Logger
35: .getLogger(ReplacerUtils.class);
36:
37: private ReplacerUtils() {
38: super ();
39: }
40:
41: public static ReplacerFormat finalFormat(Class baseName, String key)
42: throws FormatterException {
43: ResourceBundle bundle = ResourceBundle.getBundle(baseName
44: .getName());
45:
46: return ReplacerFormat.createFormat(bundle.getString(key));
47: }
48:
49: public static String jprintf(String key, ReplacerEnvironment env,
50: Class class1) {
51: try {
52: return SimplePrintf.jprintf(finalFormat(class1, key), env);
53: } catch (Exception e) {
54: logger.warn("basename: " + class1.getName(), e);
55:
56: return key;
57: }
58: }
59: }
|