KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > util > ProductInfoBundle


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.util;
5
6 import java.util.ListResourceBundle JavaDoc;
7
8 public class ProductInfoBundle extends ListResourceBundle JavaDoc {
9   public Object JavaDoc[][] getContents() {
10     return contents;
11   }
12
13   static final Object JavaDoc[][] contents = {
14     {"moniker", "Terracotta"},
15     {"invalid.timestamp", "The build timestamp string ''{0}'' does not appear to be valid."},
16     {"load.properties.failure", "Unable to load build properties from ''{0}''."},
17     {"copyright", "Copyright (c) 2003-2007 Terracotta, Inc. All rights reserved."},
18     {"option.verbose", "Produces more detailed information."},
19     {"option.help", "Shows this text."}
20   };
21 }
22
Popular Tags