Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 69190f2f14dfd2acb3f8f216a92474d7cfcf91a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*****************************************************************************
 * Copyright (c) 2011 Atos
 *
 *    
 * 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:
 *  Tristan FAURE - tristan.faure@atos.net - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.infra.table.common.adapters;

import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.emf.facet.widgets.nattable.instance.tableinstance2.TableInstance2;
import org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.IOpenable;
import org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.IOpenableWithContainer;
import org.eclipse.papyrus.infra.table.instance.papyrustableinstance.PapyrusTableInstance;

@SuppressWarnings("rawtypes")
public class TableAdapterFactory implements IAdapterFactory {

	public Object getAdapter(Object adaptableObject, Class adapterType) {
		if(adapterType == IOpenable.class) {
			if (adaptableObject instanceof TableInstance2) {
				return new TableOpenable((TableInstance2)adaptableObject);
			}
			if (adaptableObject instanceof PapyrusTableInstance) {
				PapyrusTableInstance papyrusTableInstance = (PapyrusTableInstance)adaptableObject;
				if (papyrusTableInstance.getTable() != null) {
					return new IOpenableWithContainer.Openable(papyrusTableInstance, papyrusTableInstance.getTable().getContext());
				}
			}
		}
		return null;
	}

	public Class[] getAdapterList() {
		return new Class[]{IOpenable.class};
	}

}

Back to the top