tmf: Add an attribute pool for state system analyses
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / statesystem / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 École Polytechnique de Montréal
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
10 package org.eclipse.tracecompass.tmf.core.statesystem;
11
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Message bundle for org.eclipse.tracecompass.tmf.core.statesystem
17 *
18 * @author Geneviève Bastien
19 * @since 2.0
20 */
21 public class Messages extends NLS {
22 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.core.statesystem.messages"; //$NON-NLS-1$
23
24 /**
25 * Analysis not executed text
26 */
27 public static @Nullable String TmfStateSystemAnalysisModule_PropertiesAnalysisNotExecuted;
28 /**
29 * Backend property text
30 */
31 public static @Nullable String TmfStateSystemAnalysisModule_PropertiesBackend;
32 /**
33 * File size property text
34 */
35 public static @Nullable String TmfStateSystemAnalysisModule_PropertiesFileSize;
36
37 static {
38 // initialize resource bundle
39 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
40 }
41
42 private Messages() {
43 }
44 }
This page took 0.030232 seconds and 5 git commands to generate.