analysis.io: Introduce an I/O Activity view
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / io / diskioactivity / 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.analysis.os.linux.ui.views.io.diskioactivity;
11
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Translatable strings for the Disk I/O Activity View
17 *
18 * @author Houssem Daoud
19 */
20 public class Messages extends NLS {
21 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.io.diskioactivity.messages"; //$NON-NLS-1$
22 /** Title of the Disk I/O view */
23 public static @Nullable String DiskIOActivityView_Title;
24 /** Title of the Disk I/O activity viewer */
25 public static @Nullable String DiskIOActivityViewer_Title;
26 /** X axis caption */
27 public static @Nullable String DiskIOActivityViewer_XAxis;
28 /** Y axis caption */
29 public static @Nullable String DiskIOActivityViewer_YAxis;
30 /** Read text */
31 public static @Nullable String DisksIOActivityViewer_Read;
32 /** Write text */
33 public static @Nullable String DisksIOActivityViewer_Write;
34 static {
35 // initialize resource bundle
36 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
37 }
38
39 private Messages() {
40 }
41 }
This page took 0.032168 seconds and 5 git commands to generate.