Update icons, component display name and tooltip (LTTng 2.0 control)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / model / impl / KernelProviderComponent.java
1 /**********************************************************************
2 * Copyright (c) 2012 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 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12
13 package org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl;
14
15 import java.util.Iterator;
16 import java.util.List;
17
18 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.Messages;
19 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.IBaseEventInfo;
20 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.ITraceControlComponent;
21 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.property.KernelProviderPropertySource;
22 import org.eclipse.ui.views.properties.IPropertySource;
23
24 /**
25 * <b><u>KernelProviderComponent</u></b>
26 * <p>
27 * TODO
28 * </p>
29 */
30 public class KernelProviderComponent extends TraceControlComponent {
31
32 // ------------------------------------------------------------------------
33 // Constants
34 // ------------------------------------------------------------------------
35 /**
36 * Path to icon file for this component.
37 */
38 public static final String KERNEL_PROVIDER_ICON_FILE = "icons/obj16/targets.gif"; //$NON-NLS-1$
39
40 // ------------------------------------------------------------------------
41 // Attributes
42 // ------------------------------------------------------------------------
43
44 // ------------------------------------------------------------------------
45 // Constructors
46 // ------------------------------------------------------------------------
47 /**
48 * Constructor
49 * @param name - the name of the component.
50 * @param parent - the parent of this component.
51 */
52 public KernelProviderComponent(String name, ITraceControlComponent parent) {
53 super(name, parent);
54 setToolTip(Messages.TraceControl_ProviderDisplayName);
55 setImage(KERNEL_PROVIDER_ICON_FILE);
56 }
57
58 // ------------------------------------------------------------------------
59 // Accessors
60 // ------------------------------------------------------------------------
61 /**
62 * Sets the events information for this component.
63 * @param eventInfos - events information to set.
64 */
65 public void setEventInfo(List<IBaseEventInfo> eventInfos) {
66 for (Iterator<IBaseEventInfo> iterator = eventInfos.iterator(); iterator.hasNext();) {
67 IBaseEventInfo baseEventInfo = (IBaseEventInfo) iterator.next();
68 BaseEventComponent component = new BaseEventComponent(baseEventInfo.getName(), this);
69 component.setEventInfo(baseEventInfo);
70 addChild(component);
71 }
72 }
73
74 /*
75 * (non-Javadoc)
76 * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceControlComponent#getAdapter(java.lang.Class)
77 */
78 @SuppressWarnings("rawtypes")
79 @Override
80 public Object getAdapter(Class adapter) {
81 if (adapter == IPropertySource.class) {
82 return new KernelProviderPropertySource(this);
83 }
84 return null;
85 }
86
87 // ------------------------------------------------------------------------
88 // Operations
89 // ------------------------------------------------------------------------
90
91 }
This page took 0.032251 seconds and 5 git commands to generate.