ctf: Add "Stream intersection" UI action
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.tmf.ctf.ui / src / org / eclipse / tracecompass / internal / tmf / ctf / ui / streamintersection / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 EfficiOS Inc., Alexandre Montplaisir
3 *
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which 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.ctf.ui.streamintersection;
11
12 import org.eclipse.jdt.annotation.NonNullByDefault;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Package messages
17 *
18 * @author Alexandre Montplaisir
19 * @noreference Messages class
20 */
21 @SuppressWarnings("javadoc")
22 @NonNullByDefault({})
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
26
27 public static String StreamIntersection_JobName;
28 public static String StreamIntersection_DirectoryChooser_DialogTitle;
29 public static String StreamIntersection_InvalidDirectory_DialogTitle;
30 public static String StreamIntersection_InvalidDirectory_DialogText;
31 public static String StreamIntersection_NoWriteAccess_DialogText;
32
33 static {
34 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
35 }
36
37 private Messages() {
38 }
39 }
This page took 0.030339 seconds and 5 git commands to generate.