tmf: Add 'last modified' and 'size' properties for traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / model / Messages.java
index 747a289a38b54f750ed73f5c9ef67f97df92df13..9d845daf015bf9d2b2b52c98ba02c74cb60141e7 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2013 Ericsson
+ * Copyright (c) 2013, 2014 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
@@ -8,6 +8,7 @@
  *
  * Contributors:
  *   Jean-Christian Kouamé - Initial API and implementation
+ *   Patrick Tasse - Add support for source location
  *******************************************************************************/
 
 package org.eclipse.linuxtools.tmf.ui.project.model;
@@ -18,12 +19,38 @@ import org.eclipse.osgi.util.NLS;
  * Message strings for TMF model handling.
  *
  * @author Jean-Christian Kouamé
- * @since 3.0
+ * @since 2.1
  */
 public class Messages extends NLS {
 
     private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.model.messages"; //$NON-NLS-1$
 
+    /** Instantiate analysis message box title
+     * @since 3.0*/
+    public static String TmfAnalysisElement_InstantiateAnalysis;
+
+    /** The message when analysis view is not available
+     * @since 3.0*/
+    public static String TmfAnalysisViewOutput_ViewUnavailable;
+    /** Analysis view title
+     * @since 3.0 */
+    public static String TmfAnalysisViewOutput_Title;
+
+    /** Error message when closing editor
+     * @since 3.0 */
+    public static String TmfCommonProjectElement_ErrorClosingEditor;
+
+    /** Error message when refreshing persistent property
+     * @since 3.0 */
+    public static String TmfCommonProjectElement_ErrorRefreshingProperty;
+
+    /** Error message when instantiating trace
+     * @since 3.0 */
+    public static String TmfExperimentElement_ErrorInstantiatingTrace;
+    /** Experiment text
+     * @since 3.0*/
+    public static String TmfExperimentElement_TypeName;
+
     /** The category of the resource properties */
     public static String TmfTraceElement_ResourceProperties;
 
@@ -42,9 +69,73 @@ public class Messages extends NLS {
     /** The descriptor for the event type property */
     public static String TmfTraceElement_EventType;
 
-    /** The description for the linked property */
+    /** The descriptor for the linked property */
     public static String TmfTraceElement_IsLinked;
 
+    /** The descriptor for the source location property
+     * @since 3.0*/
+    public static String TmfTraceElement_SourceLocation;
+
+    /** The descriptor for the time offset property
+     * @since 3.2*/
+    public static String TmfTraceElement_TimeOffset;
+
+    /** The descriptor for the last modified property
+     * @since 3.2 */
+    public static String TmfTraceElement_LastModified;
+
+    /** The descriptor for the size property
+     * @since 3.2 */
+    public static String TmfTraceElement_Size;
+
+    /** The format string for the size property of a file
+     * @since 3.2 */
+    public static String TmfTraceElement_FileSizeString;
+
+    /** The format string for the size property of a folder
+     * @since 3.2 */
+    public static String TmfTraceElement_FolderSizeString;
+
+    /** The format string for the size property of a folder with too many members
+     * @since 3.2 */
+    public static String TmfTraceElement_FolderSizeOverflowString;
+
+    /** Trace text
+     * @since 3.0*/
+    public static String TmfTraceElement_TypeName;
+    /**
+     * The title for the select trace type dialog
+     * @since 2.2
+     * */
+    public static String TmfTraceType_SelectTraceType;
+
+    /** Error opening a trace or experiment
+     * @since 3.0*/
+    public static String TmfOpenTraceHelper_ErrorOpeningElement;
+    /** Could not link trace */
+    public static String TmfOpenTraceHelper_LinkFailed;
+    /** No trace type match */
+    public static String TmfOpenTraceHelper_NoTraceTypeMatch;
+    /** Open trace or experiment
+     * @since 3.0*/
+    public static String TmfOpenTraceHelper_OpenElement;
+    /** Reduce was too efficient, no candidates found! */
+    public static String TmfOpenTraceHelper_ReduceError;
+    /** No trace or experiment type
+     * @since 3.0*/
+    public static String TmfOpenTraceHelper_NoTraceOrExperimentType;
+    /** No trace type */
+    public static String TmfOpenTraceHelper_NoTraceType;
+    /** Error opening trace or experiment
+     * @since 3.0*/
+    public static String TmfOpenTraceHelper_ErrorElement;
+    /** Init error */
+    public static String TmfOpenTraceHelper_InitError;
+    /** Trace not found
+     * @since 3.0*/
+    public static String TmfOpenTraceHelper_TraceNotFound;
+
+
     static {
         // initialize resource bundle
         NLS.initializeMessages(BUNDLE_NAME, Messages.class);
This page took 0.034655 seconds and 5 git commands to generate.