chris@0
|
1 |
/*
|
chris@0
|
2 |
* StarOffice News Server
|
chris@0
|
3 |
* see AUTHORS for the list of contributors
|
chris@0
|
4 |
*
|
chris@0
|
5 |
* This program is free software: you can redistribute it and/or modify
|
chris@0
|
6 |
* it under the terms of the GNU General Public License as published by
|
chris@0
|
7 |
* the Free Software Foundation, either version 3 of the License, or
|
chris@0
|
8 |
* (at your option) any later version.
|
chris@0
|
9 |
*
|
chris@0
|
10 |
* This program is distributed in the hope that it will be useful,
|
chris@0
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
chris@0
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
chris@0
|
13 |
* GNU General Public License for more details.
|
chris@0
|
14 |
*
|
chris@0
|
15 |
* You should have received a copy of the GNU General Public License
|
chris@0
|
16 |
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
chris@0
|
17 |
*/
|
chris@0
|
18 |
|
chris@0
|
19 |
package com.so.news.util;
|
chris@0
|
20 |
|
chris@0
|
21 |
import java.util.HashMap;
|
chris@0
|
22 |
|
chris@0
|
23 |
/**
|
chris@0
|
24 |
* Class that allows simple String template handling.
|
chris@0
|
25 |
* @author Christian Lins (christian.lins@web.de)
|
chris@0
|
26 |
*/
|
chris@0
|
27 |
public class StringTemplate
|
chris@0
|
28 |
{
|
chris@0
|
29 |
private String str = null;
|
chris@0
|
30 |
private String templateDelimiter = "%";
|
chris@0
|
31 |
private HashMap<String, String> templateValues = new HashMap<String, String>();
|
chris@0
|
32 |
|
chris@0
|
33 |
public StringTemplate(String str, String templateDelimiter)
|
chris@0
|
34 |
{
|
chris@0
|
35 |
this.str = str;
|
chris@0
|
36 |
this.templateDelimiter = templateDelimiter;
|
chris@0
|
37 |
}
|
chris@0
|
38 |
|
chris@0
|
39 |
public StringTemplate(String str)
|
chris@0
|
40 |
{
|
chris@0
|
41 |
this(str, "%");
|
chris@0
|
42 |
}
|
chris@0
|
43 |
|
chris@0
|
44 |
public void set(String template, String value)
|
chris@0
|
45 |
{
|
chris@0
|
46 |
this.templateValues.put(template, value);
|
chris@0
|
47 |
}
|
chris@0
|
48 |
|
chris@0
|
49 |
public void set(String template, long value)
|
chris@0
|
50 |
{
|
chris@0
|
51 |
set(template, Long.toString(value));
|
chris@0
|
52 |
}
|
chris@0
|
53 |
|
chris@0
|
54 |
public void set(String template, double value)
|
chris@0
|
55 |
{
|
chris@0
|
56 |
set(template, Double.toString(value));
|
chris@0
|
57 |
}
|
chris@0
|
58 |
|
chris@0
|
59 |
public void set(String template, Object obj)
|
chris@0
|
60 |
{
|
chris@0
|
61 |
set(template, obj.toString());
|
chris@0
|
62 |
}
|
chris@0
|
63 |
|
chris@0
|
64 |
@Override
|
chris@0
|
65 |
public String toString()
|
chris@0
|
66 |
{
|
chris@0
|
67 |
String ret = new String(str);
|
chris@0
|
68 |
|
chris@0
|
69 |
for(String key : this.templateValues.keySet())
|
chris@0
|
70 |
{
|
chris@0
|
71 |
String value = this.templateValues.get(key);
|
chris@0
|
72 |
ret = ret.replace(templateDelimiter + key, value);
|
chris@0
|
73 |
}
|
chris@0
|
74 |
|
chris@0
|
75 |
return ret;
|
chris@0
|
76 |
}
|
chris@0
|
77 |
}
|