ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / project / wizards / tracepkg / Messages.java
CommitLineData
6e651d8b
MAL
1/*******************************************************************************
2 * Copyright (c) 2013 Ericsson
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 * Contributors:
10 * Marc-Andre Laperle - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.internal.tmf.ui.project.wizards.tracepkg;
14
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * Messages common to trace package operations
19 *
20 * @author Marc-Andre Laperle
21 */
22public class Messages extends NLS {
23
24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.tmf.ui.project.wizards.tracepkg.messages"; //$NON-NLS-1$
25
26 /**
27 * Text for supplementary files in the element viewer
28 */
29 public static String TracePackage_SupplementaryFiles;
30
31 /**
32 * Text for trace in the element viewer
33 */
34 public static String TracePackage_TraceElement;
35
36 /**
37 * Text for bookmarks in the element viewer
38 */
39 public static String TracePackage_Bookmarks;
40
41 /**
42 * Text for browse button in the wizard pages
43 */
44 public static String TracePackage_Browse;
45
46 /**
47 * Title for the file dialog
48 */
49 public static String TracePackage_FileDialogTitle;
50
51 /**
52 * Text for browse select all button in the wizard pages
53 */
54 public static String TracePackage_SelectAll;
55
56 /**
57 * Text for browse deselect all button in the wizard pages
58 */
59 public static String TracePackage_DeselectAll;
60
61 /**
62 * Generic error message for wizard operations
63 */
64 public static String TracePackage_ErrorOperation;
65
66 /**
67 * Generic error when multiple problems occur (MultiStatus)
68 */
69 public static String TracePackage_ErrorMultipleProblems;
70
71 /**
72 * Generic dialog message for error in wizard operations
73 */
74 public static String TracePackage_InternalErrorTitle;
75
76 static {
77 // initialize resource bundle
78 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
79 }
80
81 private Messages() {
82 }
83
84}
This page took 0.057772 seconds and 5 git commands to generate.