Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 868ddb26e48da0d33240a4785544b955809c7d58 (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
/*****************************************************************************
 * Copyright (c) 2016 CEA LIST 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:
 *   Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.infra.nattable.properties.constraints;

import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.papyrus.infra.constraints.constraints.JavaQuery;
import org.eclipse.papyrus.infra.core.sasheditor.editor.IMultiPageEditorPart;
import org.eclipse.papyrus.infra.nattable.model.nattable.Table;
import org.eclipse.papyrus.infra.ui.util.EditorHelper;
import org.eclipse.ui.IEditorPart;

/**
 * The java constraint to check if the table from the active nattable editor.
 * 
 * @since 3.0
 */
public class EObjectInTableJavaConstraint implements JavaQuery {

	/**
	 * {@inheritDoc}
	 * 
	 * @see org.eclipse.papyrus.infra.constraints.constraints.JavaQuery#match(java.lang.Object)
	 */
	@Override
	public boolean match(Object selection) {
		boolean result = false;

		if (null != EditorHelper.getActivePart()) {
			final IEditorPart currentEditor = EditorHelper.getCurrentEditor();
			if (currentEditor instanceof IMultiPageEditorPart && null != ((IMultiPageEditorPart) currentEditor).getActiveEditor()) {
				final IMultiPageEditorPart multiDiagramEditor = (IMultiPageEditorPart) currentEditor;
				final Table table = multiDiagramEditor.getActiveEditor().getAdapter(Table.class);
				if (null != table) {
					result = checkMoreConstraints(table);
				}
			} else if (currentEditor instanceof IAdaptable) {
				final Table table = ((IAdaptable) currentEditor).getAdapter(Table.class);
				result = checkMoreConstraints(table);
			}
		}

		return result;
	}

	/**
	 * This allows to check more constraint for the match.
	 * 
	 * @param table
	 *            the current table.
	 * @return <code>true</code> if the constraints are correctly managed, <code>false</code> otherwise.
	 */
	protected boolean checkMoreConstraints(final Table table) {
		return true;
	}

}

Back to the top