Import views plugins
[deliverable/tracecompass.git] / tmf / org.lttng.scope.tmf2.views.ui / src / org / lttng / scope / tmf2 / views / ui / timeline / widgets / timegraph / toolbar / modelconfig / Messages.java
1 /*
2 * Copyright (C) 2017 EfficiOS Inc.
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.lttng.scope.tmf2.views.ui.timeline.widgets.timegraph.toolbar.modelconfig;
11
12 import org.eclipse.jdt.annotation.NonNullByDefault;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Message bundle for the package
17 *
18 * @noreference Messages class
19 */
20 @NonNullByDefault({})
21 @SuppressWarnings("javadoc")
22 public class Messages extends NLS {
23
24 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
25
26 public static String modelConfigButtonName;
27 public static String modelConfigDialogTitle;
28 public static String modelConfigDialogHeader;
29
30 public static String modelConfigDialogRowHeaderState;
31 public static String modelConfigDialogRowHeaderColor;
32 public static String modelConfigDialogRowHeaderLineThickness;
33
34 public static String modelConfigDialogResetDefaultsButton;
35
36 static {
37 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
38 }
39
40 private Messages() {
41 }
42 }
This page took 0.035091 seconds and 5 git commands to generate.