Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3677994f225dfd7bbd2470e025e84a9e308205d5 (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
/*****************************************************************************
 * Copyright (c) 2011 CEA LIST.
 *
 *    
 * 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:
 *  Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.sysml.table.allocation.tester;

import org.eclipse.core.expressions.PropertyTester;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.papyrus.sysml.table.allocation.CreateAllocationTableCommand;

/**
 * Property tester for Allocation Table
 * 
 * 
 * 
 */
public class AllocationPropertyTester extends PropertyTester {

	/**
	 * the property to test
	 */
	public static final String IS_APPLIED_ALLOCATIONS = "isAppliedAllocations"; //$NON-NLS-1$

	/**
	 * 
	 * @see org.eclipse.core.expressions.IPropertyTester#test(java.lang.Object, java.lang.String, java.lang.Object[], java.lang.Object)
	 * 
	 * @param receiver
	 * @param property
	 * @param args
	 * @param expectedValue
	 * @return
	 */
	public boolean test(Object receiver, String property, Object[] args, Object expectedValue) {
		if(IS_APPLIED_ALLOCATIONS.equals(property) && receiver instanceof IStructuredSelection) {
			boolean currentValue = testIsAppliedAllocation((IStructuredSelection)receiver);
			return (new Boolean(currentValue).equals(expectedValue));
		}
		return false;
	}

	/**
	 * returns <code>true</code> if the first selected element is inside a package where the profile SysML::Allocations is applied
	 * 
	 * @param selection
	 * @return
	 */
	private boolean testIsAppliedAllocation(IStructuredSelection selection) {
		CreateAllocationTableCommand handler = new CreateAllocationTableCommand();
		return handler.isEnabled();
	}

}

Back to the top