blob: 9e0f4404875f489692519e009b75654416ace7f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/*
* $Id$
* Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
package org.apache.fop.viewer;
import java.util.*;
import java.io.*;
/**
* Die Klasse <code>SecureResourceBundle</code> ist ein Resourceundle, das im Falle eines fehlenden
* Eintrages keinen Absturz verursacht, sondern die Meldung
* <strong>Key <i>key</i> not found</strong> zur�ckgibt.
* @see PropertyResourceBundle
*
* @author Stanislav.Gorkhover@jCatalog.com
* @version 1.0 18.03.1999
*/
public class SecureResourceBundle extends ResourceBundle
implements Translator {
// Fehlende keys mit einer Meldung zur�ckgeben.
private boolean isMissingEmphasized = false;
// private Properties lookup = new Properties();
private LoadableProperties lookup = new LoadableProperties();
private boolean isSourceFound = true;
public void setMissingEmphasized(boolean flag) {
isMissingEmphasized = flag;
}
/**
* Kreiert ein ResourceBundle mit der Quelle in <strong>in</strong>.
*/
public SecureResourceBundle(InputStream in) {
try {
lookup.load(in);
} catch (Exception ex) {
//log.error("Abgefangene Exception: " + ex.getMessage());
isSourceFound = false;
}
}
public Enumeration getKeys() {
return lookup.keys();
}
/**
* H�ndelt den abgefragten Key, liefert entweder den zugeh�rigen Wert oder eine Meldung.
* Die <strong>null</strong> wird nie zur�ckgegeben.
* Schreibt die fehlenden Suchschl�ssel in die Protokoll-Datei.
* @return <code>Object</code><UL>
* <LI>den zu dem Suchschl�ssel <strong>key</strong> gefundenen Wert, falls vorhanden, <br>
* <LI>Meldung <strong>Key <i>key</i> not found</strong>, falls der Suchschl�ssel fehlt
* und die Eigenschaft "jCatalog.DevelopmentStartModus" in der ini-Datei aus true gesetzt ist.
* <LI>Meldung <strong>Key is null</strong>, falls der Suchschl�ssel <code>null</code> ist.
* </UL>
*
*/
public Object handleGetObject(String key) {
if (key == null)
return "Key is null";
Object obj = lookup.get(key);
if (obj != null)
return obj;
else {
if (isMissingEmphasized) {
//log.debug(getClass().getName() + ": missing key: "
// + key);
return getMissedRepresentation(key.toString());
} else
return key.toString();
}
}
/**
* Stellt fest, ob es den Key gibt.
*/
public boolean contains(String key) {
return (key == null || lookup.get(key) == null) ? false : true;
}
private String getMissedRepresentation(String str) {
return "<!" + str + "!>";
}
public boolean isSourceFound() {
return isSourceFound;
}
}
|