/********************************************************************** * Copyright (c) 2012, 2014 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 **********************************************************************/ package org.eclipse.tracecompass.internal.lttng2.control.ui.views.property; import org.eclipse.ui.views.properties.IPropertyDescriptor; import org.eclipse.ui.views.properties.IPropertySource; /** * <p> * Base property source implementation. * </p> * * @author Bernd Hufmann */ public abstract class BasePropertySource implements IPropertySource { // ------------------------------------------------------------------------ // Operations // ------------------------------------------------------------------------ @Override public Object getEditableValue() { return null; } @Override public abstract IPropertyDescriptor[] getPropertyDescriptors(); @Override public abstract Object getPropertyValue(Object id); @Override public boolean isPropertySet(Object id) { return false; } @Override public void resetPropertyValue(Object id) { } @Override public void setPropertyValue(Object id, Object value) { } }