xml.ui: Enable multiple XML latency views instances
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui / src / org / eclipse / tracecompass / internal / 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.internal.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 */
19 public class TmfXmlLatencyViewOutput extends TmfAnalysisViewOutput {
20
21 private String fLabel;
22
23 /**
24 * @param viewid
25 * The ID of the view
26 * @param label
27 * The label of view
28 */
29 public TmfXmlLatencyViewOutput(String viewid, String label) {
30 super(viewid, label);
31 fLabel = label;
32 }
33
34 @Override
35 public String getName() {
36 return fLabel;
37 }
38 }
This page took 0.031725 seconds and 5 git commands to generate.