xml: Replace a checkNotNull by a message when state undefined
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / internal / tmf / analysis / xml / core / model / 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.internal.tmf.analysis.xml.core.model;
11
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Externalized messages for this package
17 *
18 * @author Geneviève Bastien
19 */
20 public class Messages extends NLS {
21 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.messages"; //$NON-NLS-1$
22
23 /** Message for a state undefined */
24 public static @Nullable String TmfXmlFsm_StateUndefined;
25 static {
26 // initialize resource bundle
27 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
28 }
29
30 private Messages() {
31 }
32 }
This page took 0.031935 seconds and 5 git commands to generate.