/******************************************************************************* * Copyright (c) 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: * Marc-Andre Laperle - Initial API and implementation *******************************************************************************/ package fr.inria.linuxtools.tmf.ui.viewers.events; import org.eclipse.core.runtime.IAdapterFactory; import org.eclipse.ui.views.properties.IPropertySource; import fr.inria.linuxtools.tmf.core.event.ITmfEvent; /** * Implements basic UI support for TMF events. * * @since 2.0 */ public class TmfEventAdapterFactory implements IAdapterFactory { private static Class<?>[] PROPERTIES = new Class[] { IPropertySource.class }; @Override public Class<?>[] getAdapterList() { return PROPERTIES; } @Override public Object getAdapter(Object element, Class key) { ITmfEvent tmfEvent = (ITmfEvent) element; if (IPropertySource.class.equals(key)) { return new TmfEventPropertySource(tmfEvent); } return null; } }