/******************************************************************************* * Copyright (c) 2014, 2015 MINRES Technologies GmbH 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: * MINRES Technologies GmbH - initial API and implementation *******************************************************************************/ package com.minres.scviewer.ui.adapter; import org.eclipse.core.runtime.IAdapterFactory; import org.eclipse.ui.views.properties.IPropertySource; import com.minres.scviewer.database.ITx; public class TxAdapterFactory implements IAdapterFactory { @SuppressWarnings({ "rawtypes", "unchecked" }) @Override public Object getAdapter(Object adaptableObject, Class adapterType) { if (adapterType == IPropertySource.class) return new ITransactionPropertySource((ITx) adaptableObject); return null; } @SuppressWarnings({ "rawtypes", "unchecked" }) @Override public Class[] getAdapterList() { return new Class[]{IPropertySource.class}; } }