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 WelcomeFrameBundle extends ListResourceBundle {
09: public Object[][] getContents() {
10: return contents;
11: }
12:
13: static final Object[][] contents = { { "welcome.title",
14: "Terracotta Welcome" }, };
15: }
|