X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fui%2Fviews%2Fcontrol%2Fproperty%2FUstProviderPropertySource.java;h=2024346a85de7e106b08da62aa1838c4e466034d;hb=080600d9018f188e488a634be6e25bf91d3f692b;hp=2221bf423cebcf77ace32d40c441c7fa5a07225d;hpb=7c94f49001b043cd9605cd2a9d733257993c63c6;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/property/UstProviderPropertySource.java b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/property/UstProviderPropertySource.java index 2221bf423c..2024346a85 100644 --- a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/property/UstProviderPropertySource.java +++ b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/property/UstProviderPropertySource.java @@ -1,26 +1,27 @@ /********************************************************************** - * Copyright (c) 2012 Ericsson - * + * Copyright (c) 2012, 2013 Ericsson + * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Bernd Hufmann - Initial API and implementation + * + * Contributors: + * Bernd Hufmann - Initial API and implementation **********************************************************************/ package org.eclipse.linuxtools.internal.lttng2.ui.views.control.property; -import org.eclipse.linuxtools.internal.lttng2.ui.views.control.Messages; +import org.eclipse.linuxtools.internal.lttng2.ui.views.control.messages.Messages; import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.UstProviderComponent; +import org.eclipse.linuxtools.tmf.ui.properties.ReadOnlyTextPropertyDescriptor; import org.eclipse.ui.views.properties.IPropertyDescriptor; -import org.eclipse.ui.views.properties.TextPropertyDescriptor; /** - * UstProviderPropertySource *

* Property source implementation for the UST provider component. *

+ * + * @author Bernd Hufmann */ public class UstProviderPropertySource extends BasePropertySource { @@ -36,7 +37,7 @@ public class UstProviderPropertySource extends BasePropertySource { */ public static final String UST_PROVIDER_PID_PROPERTY_ID = "ust.provider.pid"; //$NON-NLS-1$ /** - * The UST provider 'name' property name. + * The UST provider 'name' property name. */ public static final String UST_PROVIDER_NAME_PROPERTY_NAME = Messages.TraceControl_ProviderNamePropertyName; /** @@ -47,14 +48,16 @@ public class UstProviderPropertySource extends BasePropertySource { // ------------------------------------------------------------------------ // Attributes // ------------------------------------------------------------------------ + /** - * The UST provider component which this property source is for. + * The UST provider component which this property source is for. */ private UstProviderComponent fUstProvider; - + // ------------------------------------------------------------------------ // Constructors // ------------------------------------------------------------------------ + /** * Constructor * @param component - the UST provider component @@ -62,25 +65,18 @@ public class UstProviderPropertySource extends BasePropertySource { public UstProviderPropertySource(UstProviderComponent component) { fUstProvider = component; } - + // ------------------------------------------------------------------------ // Operations // ------------------------------------------------------------------------ - /* - * (non-Javadoc) - * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.property.BasePropertySource#getPropertyDescriptors() - */ + @Override public IPropertyDescriptor[] getPropertyDescriptors() { return new IPropertyDescriptor[] { - new TextPropertyDescriptor(UST_PROVIDER_NAME_PROPERTY_ID, UST_PROVIDER_NAME_PROPERTY_NAME), - new TextPropertyDescriptor(UST_PROVIDER_PID_PROPERTY_ID, UST_PROVIDER_PID_PROPERTY_NAME)}; + new ReadOnlyTextPropertyDescriptor(UST_PROVIDER_NAME_PROPERTY_ID, UST_PROVIDER_NAME_PROPERTY_NAME), + new ReadOnlyTextPropertyDescriptor(UST_PROVIDER_PID_PROPERTY_ID, UST_PROVIDER_PID_PROPERTY_NAME)}; } - /* - * (non-Javadoc) - * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.property.BasePropertySource#getPropertyValue(java.lang.Object) - */ @Override public Object getPropertyValue(Object id) { if(UST_PROVIDER_NAME_PROPERTY_ID.equals(id)) {