tmf: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / linuxtools / internal / lttng2 / control / ui / views / property / KernelProviderPropertySource.java
CommitLineData
06b9339e 1/**********************************************************************
11252342 2 * Copyright (c) 2012, 2013 Ericsson
5a7326dc 3 *
06b9339e
BH
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
5a7326dc
BH
8 *
9 * Contributors:
080600d9 10 * Bernd Hufmann - Initial API and implementation
06b9339e 11 **********************************************************************/
8e8c0226 12package org.eclipse.linuxtools.internal.lttng2.control.ui.views.property;
06b9339e 13
8e8c0226
AM
14import org.eclipse.linuxtools.internal.lttng2.control.ui.views.messages.Messages;
15import org.eclipse.linuxtools.internal.lttng2.control.ui.views.model.impl.KernelProviderComponent;
2bdf0193 16import org.eclipse.tracecompass.tmf.ui.properties.ReadOnlyTextPropertyDescriptor;
06b9339e 17import org.eclipse.ui.views.properties.IPropertyDescriptor;
06b9339e
BH
18
19/**
06b9339e
BH
20 * <p>
21 * Property source implementation for the kernl provider component.
22 * </p>
5a7326dc 23 *
dbd4432d 24 * @author Bernd Hufmann
06b9339e
BH
25 */
26public class KernelProviderPropertySource extends BasePropertySource {
27
28 // ------------------------------------------------------------------------
29 // Constants
30 // ------------------------------------------------------------------------
11252342 31
06b9339e
BH
32 /**
33 * The kernel provider 'name' property ID.
34 */
35 public static final String KERNEL_PROVIDER_NAME_PROPERTY_ID = "ust.provider.name"; //$NON-NLS-1$
36 /**
5a7326dc 37 * The kernel provider 'name' property name.
06b9339e
BH
38 */
39 public static final String KERNEL_PROVIDER_NAME_PROPERTY_NAME = Messages.TraceControl_ProviderNamePropertyName;
40
41 // ------------------------------------------------------------------------
42 // Attributes
43 // ------------------------------------------------------------------------
11252342 44
06b9339e 45 /**
5a7326dc 46 * The kernel provider component which this property source is for.
06b9339e
BH
47 */
48 private KernelProviderComponent fProvider;
5a7326dc 49
06b9339e
BH
50 // ------------------------------------------------------------------------
51 // Constructors
52 // ------------------------------------------------------------------------
11252342 53
06b9339e
BH
54 /**
55 * Constructor
56 * @param component - the kernel provider component
57 */
58 public KernelProviderPropertySource(KernelProviderComponent component) {
59 fProvider = component;
60 }
61
62 // ------------------------------------------------------------------------
63 // Operations
64 // ------------------------------------------------------------------------
11252342 65
06b9339e
BH
66 @Override
67 public IPropertyDescriptor[] getPropertyDescriptors() {
68 return new IPropertyDescriptor[] {
5a7326dc 69 new ReadOnlyTextPropertyDescriptor(KERNEL_PROVIDER_NAME_PROPERTY_ID, KERNEL_PROVIDER_NAME_PROPERTY_NAME)};
06b9339e
BH
70 }
71
06b9339e
BH
72 @Override
73 public Object getPropertyValue(Object id) {
74 if(KERNEL_PROVIDER_NAME_PROPERTY_ID.equals(id)) {
75 return fProvider.getName();
76 }
77 return null;
78 }
79
80}
This page took 0.052054 seconds and 5 git commands to generate.