tmf : Introduce the modules for the XML pattern analysis
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / internal / tmf / analysis / xml / core / pattern / stateprovider / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9 package org.eclipse.tracecompass.internal.tmf.analysis.xml.core.pattern.stateprovider;
10
11 import org.eclipse.osgi.util.NLS;
12
13 /**
14 * Externalized messages for the XML analysis state provider package
15 *
16 * @author Jean-Christian Kouame
17 */
18 public class Messages extends NLS {
19 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.analysis.xml.core.pattern.stateprovider.messages"; //$NON-NLS-1$
20 /**
21 * The string content
22 */
23 public static String PatternSegmentContentAspect_Content;
24 /**
25 * Help text of the segment content aspect
26 */
27 public static String PatternSegmentContentAspect_HelpText;
28 /**
29 * Help text of the segment name aspect
30 */
31 public static String PatternSegmentNameAspect_HelpText;
32 /**
33 * The string name
34 */
35 public static String PatternSegmentNameAspect_Name;
36 static {
37 // initialize resource bundle
38 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
39 }
40
41 private Messages() {
42 }
43 }
This page took 0.031036 seconds and 5 git commands to generate.