Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 40e0e18a7eb3239b47cc61513e1f843f6db2d8b1 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*****************************************************************************
 * Copyright (c) 2014 CEA LIST.
 *
 * 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:
 *  Benoit Maggi (CEA LIST) benoit.maggi@cea.fr - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.infra.nattable.common.utils;

import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;

import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.papyrus.infra.emf.utils.EMFHelper;
import org.eclipse.papyrus.infra.nattable.model.nattable.NattablePackage;
import org.eclipse.papyrus.infra.nattable.model.nattable.Table;


public class TableUtil {

	/**
	 * Gets the tables associated to element.
	 *
	 * @param element
	 * @param resourceSet
	 *            can be null, it will then try to retrieve it from the element.
	 * @return the list of diagrams associated with the given element
	 */
	public static List<Table> getAssociatedTables(EObject element, ResourceSet resourceSet) {
		List<Table> result;

		if (resourceSet == null) {
			resourceSet = EMFHelper.getResourceSet(element);
		}

		if (resourceSet == null) {
			// Deny
			result = Collections.emptyList();
		} else {
			result = new ArrayList<Table>(3); // Don't anticipate many
			for (EStructuralFeature.Setting setting : EMFHelper.getUsages(element)) {
				if (setting.getEStructuralFeature() == NattablePackage.Literals.TABLE__OWNER) {
					if (EMFHelper.getResourceSet(setting.getEObject()) == resourceSet) {
						result.add((Table) setting.getEObject());
					}
				}
			}
		}

		return result;
	}

	/**
	 * Gets the diagrams associated to element.
	 *
	 * @param element
	 * @param notationResource
	 *            the notation resource where to look for diagrams
	 * @return the list of diagrams associated with the given element
	 */
	public static List<Table> getAssociatedTablesFromNotationResource(EObject element, Resource notationResource) {
		if (notationResource != null) {
			LinkedList<Table> tables = new LinkedList<Table>();
			for (EObject eObj : notationResource.getContents()) {
				if (eObj instanceof Table) {
					Table table = (Table) eObj;
					if (element.equals(table.getOwner())) {
						tables.add(table);
					}
				}
			}
			return tables;
		}
		return Collections.emptyList();
	}
}

Back to the top