1 /*****************************************************/
\r
2 /* This java file is a part of the */
\r
4 /* - Plouf's Java IRC Client - */
\r
6 /* Copyright (C) 2002 - 2004 Philippe Detournay */
\r
8 /* All contacts : theplouf@yahoo.com */
\r
10 /* PJIRC is free software; you can redistribute */
\r
11 /* it and/or modify it under the terms of the GNU */
\r
12 /* General Public License as published by the */
\r
13 /* Free Software Foundation; version 2 or later of */
\r
16 /* PJIRC is distributed in the hope that it will */
\r
17 /* be useful, but WITHOUT ANY WARRANTY; without */
\r
18 /* even the implied warranty of MERCHANTABILITY or */
\r
19 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
\r
20 /* General Public License for more details. */
\r
22 /* You should have received a copy of the GNU */
\r
23 /* General Public License along with PJIRC; if */
\r
24 /* not, write to the Free Software Foundation, */
\r
25 /* Inc., 59 Temple Place, Suite 330, Boston, */
\r
26 /* MA 02111-1307 USA */
\r
28 /*****************************************************/
\r
33 * Parameter provider with automatic prefix.
\r
35 public class PrefixedParameterProvider implements ParameterProvider {
\r
36 private String _prefix;
\r
37 private ParameterProvider _source;
\r
40 * Create a new PrefixedParameterProvider with the given source and prefix.
\r
43 * for fetching parameters.
\r
45 * to add before all parameter name.
\r
47 public PrefixedParameterProvider(ParameterProvider source, String prefix) {
\r
53 public String getParameter(String name) {
\r
54 return _source.getParameter(_prefix + name);
\r