KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > welcome > DSOSamplesFrameBundle


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.welcome;
5
6 import java.util.ListResourceBundle JavaDoc;
7
8 public class DSOSamplesFrameBundle extends ListResourceBundle JavaDoc {
9   public Object JavaDoc[][] getContents() {
10     return contents;
11   }
12
13   static final Object JavaDoc[][] contents = {
14     {"frame.title", "Sample Application Launcher"},
15     {"jvm.coordination", "JVM Coordination"},
16     {"shared.work.queue", "Shared Work Queue"},
17     {"starting.jtable", "Staring Shared JTable..."},
18     {"starting.shared.editor", "Starting Shared Graphics Editor..."},
19     {"starting.chatter", "Starting Chatter..."},
20     {"starting.jvm.coordination", "Starting JVM Coordination..."},
21     {"starting.shared.queue", "Starting Shared Work Queue..."}
22   };
23 }
24
Popular Tags