blob: 1e2bac2b4efa5c8b8b85d1977145b901a6f69134 [file] [log] [blame]
/**********************************************************************
* 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 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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) {
}
}