/******************************************************************************* * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. 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: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.tcf.te.ui.views.internal.adapters; import org.eclipse.core.runtime.IAdapterFactory; import org.eclipse.tcf.te.ui.views.internal.View; import org.eclipse.ui.navigator.CommonViewer; /** * The adapter factory that adapts the target explorer view to its common viewer. */ public class ViewAdapterFactory implements IAdapterFactory { /* * (non-Javadoc) * @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object, java.lang.Class) */ @Override public Object getAdapter(Object adaptableObject, Class adapterType) { if(adaptableObject instanceof View) { if(CommonViewer.class.equals(adapterType)) { View view = (View) adaptableObject; return view.getAdapter(CommonViewer.class); } } return null; } /* * (non-Javadoc) * @see org.eclipse.core.runtime.IAdapterFactory#getAdapterList() */ @Override public Class[] getAdapterList() { return new Class[]{CommonViewer.class}; } }