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 org.terracotta.dso;
05:
06: import org.eclipse.osgi.util.NLS;
07:
08: /**
09: * This is the Eclipse way of doing I18N. We may go there after everything
10: * is working properly.
11: */
12:
13: final public class Messages extends NLS {
14: private static final String BUNDLE_NAME = Messages.class.getName();
15:
16: private Messages() {/**/
17: }
18:
19: public static String Editor_warning_save_delete;
20: public static String Editor_error_save_title;
21: public static String Editor_error_save_message;
22:
23: static {
24: NLS.initializeMessages(BUNDLE_NAME, Messages.class);
25: }
26: }
|