]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.debug.ui/src/org/simantics/debug/ui/Messages.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.debug.ui / src / org / simantics / debug / ui / Messages.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007- VTT Technical Research Centre of Finland.\r
3  * All rights reserved. This program and the accompanying materials\r
4  * are made available under the terms of the Eclipse Public License v1.0\r
5  * which accompanies this distribution, and is available at\r
6  * http://www.eclipse.org/legal/epl-v10.html\r
7  *\r
8  * Contributors:\r
9  *     VTT Technical Research Centre of Finland - initial API and implementation\r
10  *******************************************************************************/\r
11 /*******************************************************************************
12  * Copyright (c) 2007 VTT Technical Research Centre of Finland and others.
13  * All rights reserved. This program and the accompanying materials
14  * are made available under the terms of the Eclipse Public License v1.0
15  * which accompanies this distribution, and is available at
16  * http://www.eclipse.org/legal/epl-v10.html
17  *
18  * Contributors:
19  *     VTT Technical Research Centre of Finland - initial API and implementation
20  *******************************************************************************/
21 package org.simantics.debug.ui;
22
23 import org.eclipse.osgi.util.NLS;
24
25 public class Messages extends NLS {
26
27         public static String Name_adaption_problem;
28         public static String Name_formulation_problem;
29
30         private static final String BUNDLE_NAME = "org.simantics.debug.ui.messages"; //$NON-NLS-1$
31
32         static {
33                 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34         }
35
36 }