ed493cf82e617c48a644f5945a1d69545669e4f1
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / event / matching / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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 * Contributors:
10 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.core.event.matching;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Externalized strings for this plugin
19 *
20 * @author Geneviève Bastien
21 * @since 1.0
22 */
23 @SuppressWarnings("javadoc")
24 public class Messages extends NLS {
25
26 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.core.event.matching.messages"; //$NON-NLS-1$
27
28 public static String TmfEventMatching_LookingEventsFrom;
29 public static String TmfEventMatching_MatchesFound;
30 public static String TmfEventMatching_MatchingEvents;
31 public static String TmfEventMatching_RequestingEventsFrom;
32
33 static {
34 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
35 }
36
37 private Messages() {
38 }
39
40 }
This page took 0.032506 seconds and 4 git commands to generate.