tmf : Add latency table view for the pattern analysis
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui / src / org / eclipse / tracecompass / tmf / analysis / xml / ui / module / TmfXmlLatencyViewOutput.java
1 /*******************************************************************************
2 * Copyright (c) 2016 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 package org.eclipse.tracecompass.tmf.analysis.xml.ui.module;
10
11 import org.eclipse.tracecompass.tmf.ui.analysis.TmfAnalysisViewOutput;
12
13 /**
14 * Class overriding the default analysis view output for XML pattern analysis
15 * latency views
16 *
17 * @author Jean-Christian Kouame
18 * @since 2.0
19 *
20 */
21 public class TmfXmlLatencyViewOutput extends TmfAnalysisViewOutput {
22
23 private String fLabel;
24
25 /**
26 * @param viewid
27 * The ID of the view
28 * @param label
29 * The label of view
30 */
31 public TmfXmlLatencyViewOutput(String viewid, String label) {
32 super(viewid);
33 fLabel = label;
34 }
35
36 @Override
37 public String getName() {
38 return fLabel;
39 }
40 }
This page took 0.032432 seconds and 6 git commands to generate.