Bug 378401: Implementation of time graph widget.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / widgetStubs / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / test / stub / adaption / TsfImplProvider.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2010 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 * Contributors:
10 * Alvaro Sanchez-Leon (alvsan09@gmail.com) - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.tmf.ui.widgets.timegraph.test.stub.adaption;
13
14 import java.util.HashMap;
15 import java.util.Map;
16
17 import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.TimeGraphPresentationProvider;
18 import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.ITimeEvent;
19 import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.ITimeGraphEntry;
20 import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.test.stub.model.EventImpl;
21 import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.test.stub.model.TraceImpl;
22
23 @SuppressWarnings("nls")
24 public class TsfImplProvider extends TimeGraphPresentationProvider {
25
26 // ========================================================================
27 // Methods
28 // ========================================================================
29 @Override
30 public int getEventTableIndex(ITimeEvent event) {
31 return 0;
32 }
33
34 @Override
35 public Map<String, String> getEventHoverToolTipInfo(ITimeEvent revent) {
36 Map<String, String> toolTipEventMsgs = new HashMap<String, String>();
37 if (revent instanceof EventImpl) {
38 toolTipEventMsgs.put("Test Tip1", "Test Value tip1");
39 toolTipEventMsgs.put("Test Tip2", "Test Value tip2");
40 }
41
42 return toolTipEventMsgs;
43 }
44
45 @Override
46 public String getEventName(ITimeEvent event) {
47 String name = "Unknown";
48 if (event instanceof EventImpl) {
49 EventImpl devent = (EventImpl) event;
50 name = devent.getType().toString();
51 }
52 return name;
53 }
54
55 @Override
56 public String getTraceClassName(ITimeGraphEntry trace) {
57 String name = "";
58 if (trace instanceof TraceImpl) {
59 TraceImpl dTrace = (TraceImpl) trace;
60 name = dTrace.getClassName();
61 }
62 return name;
63 }
64 }
This page took 0.063736 seconds and 6 git commands to generate.