analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / internal / tmf / core / trace / indexer / Messages.java
CommitLineData
032ecd45 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
032ecd45
MAL
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
2bdf0193 13package org.eclipse.tracecompass.internal.tmf.core.trace.indexer;
032ecd45
MAL
14
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * Message bundle for tmf.core.trace.index
19 *
20 * @author Marc-Andre Laperle
21 */
22public class Messages extends NLS {
2bdf0193 23 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.core.trace.indexer.messages"; //$NON-NLS-1$
032ecd45
MAL
24 /**
25 * Error opening index
26 */
27 public static String ErrorOpeningIndex;
28 /**
29 * I/O Error allocating a node
30 */
31 public static String BTree_IOErrorAllocatingNode;
32 /**
33 * I/O Error closing the index
34 */
35 public static String IOErrorClosingIndex;
36 /**
37 * I/O Error reading header from disk
38 */
39 public static String IOErrorReadingHeader;
40 /**
41 * I/O Error writing header from disk
42 */
43 public static String IOErrorWritingHeader;
44 /**
45 * I/O Error reading node from disk
46 */
47 public static String BTreeNode_IOErrorLoading;
48 /**
49 * I/O Error writing node to disk
50 */
51 public static String BTreeNode_IOErrorWriting;
52 /**
53 * I/O Error reading from disk
54 */
55 public static String FlatArray_IOErrorReading;
56 /**
57 * I/O Error writing to disk
58 */
59 public static String FlatArray_IOErrorWriting;
60 static {
61 // initialize resource bundle
62 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
63 }
64
65 private Messages() {
66 }
67}
This page took 0.081719 seconds and 5 git commands to generate.