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