2009/05/20 - Apache Shale has been retired.
For more information, please explore the Attic.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.shale.examples.sqlbrowser;
21
22 import org.apache.shale.tiger.managed.Bean;
23 import org.apache.shale.tiger.managed.Scope;
24 import org.apache.shale.util.LoadBundle;
25
26 /***
27 * <p>Proxy for localized messages container for the SQL Browser application.</p>
28 */
29 @Bean(name="messages", scope=Scope.APPLICATION)
30 public class Messages extends LoadBundle {
31
32
33 /***
34 * <p>Creates a new instance of Messages for the default bundle name.</p>
35 */
36 public Messages() {
37 this("org.apache.shale.examples.sqlbrowser.Bundle");
38 }
39
40
41 /***
42 * <p>Creates a new instance of Messages for the specified bundle name.</p>
43 *
44 * @param name Name of the resource bundle to be wrapped.</p>
45 */
46 public Messages(String name) {
47 super(name);
48 }
49
50
51 }