01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.welcome;
05:
06: import java.util.ListResourceBundle;
07:
08: public class DSOSamplesFrameBundle extends ListResourceBundle {
09: public Object[][] getContents() {
10: return contents;
11: }
12:
13: static final Object[][] contents = {
14: { "frame.title", "Sample Application Launcher" },
15: { "servers.action.name", "Servers" },
16: { "servers.use.local", "Use local server" },
17: { "servers.use.remote", "Use remote servers" },
18: { "servers.field.tip", "Example: server1:9510,server2:9510" },
19: {
20: "servers.field.description",
21: "<html>A comma-separated list of server specifications:<br><p align=center>example: server1:9510,server2:9510</html>" },
22: { "jvm.coordination", "JVM Coordination" },
23: { "shared.work.queue", "Shared Work Queue" },
24: { "starting.jtable", "Staring Shared JTable..." },
25: { "starting.shared.editor",
26: "Starting Shared Graphics Editor..." },
27: { "starting.chatter", "Starting Chatter..." },
28: { "starting.jvm.coordination",
29: "Starting JVM Coordination..." },
30: { "starting.shared.queue", "Starting Shared Work Queue..." } };
31: }
|