/***************************************************************************** * 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.infra.gmfdiag.modelexplorer.providers; import java.util.Iterator; import org.eclipse.emf.ecore.EObject; import org.eclipse.gmf.runtime.notation.Diagram; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.papyrus.views.modelexplorer.NavigatorUtils; import org.eclipse.core.expressions.PropertyTester; /** * This class provides test called by the plugin.xml in order to know if handlers should be active or not. * * Sometimes these test can be done directly in the plugin.xml in the activeWhen (with instanceof, adapt, ...), * but in this case, Eclipse doesn't refresh correctly the status of the command in the menu Edit or in other menu. * * * FIXME : i think this class is not yet used */ public class DiagramPropertyTester extends PropertyTester { /** property to test if the selected elements is a table */ public static final String IS_DIAGRAM = "isDiagram"; //$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(final Object receiver, final String property, final Object[] args, final Object expectedValue) { if(IS_DIAGRAM.equals(property) && receiver instanceof IStructuredSelection) { boolean answer = isDiagram((IStructuredSelection)receiver); return new Boolean(answer).equals(expectedValue); } return false; } // /** // * Tests the selection in order to know if it contains only {@link TableInstance} // * // * @param selection // * @return // * <code>true</code> if the selection is composed by {@link TableInstance} // */ // private boolean isDiagram(final IStructuredSelection selection) { // if(!selection.isEmpty()) { // Iterator<?> iter = selection.iterator(); // while(iter.hasNext()) { // if(!(iter.next() instanceof Diagram)) { // return false; // } // } // return true; // } // return false; // } // /** * Tests the selection in order to know if it contains only {@link Diagram} * * @param selection * @return * <code>true</code> if the selection is composed by {@link Diagram} * * FIXME : this method should be in an upper plugin like oep.infra.gmfdiag.common * FIXME : why use this one and not the other method isDiagram (see upper in this class) */ private boolean isDiagram(IStructuredSelection selection) { if(!selection.isEmpty()) { Iterator<?> iter = selection.iterator(); while(iter.hasNext()) { /** * Set to use the IAdaptable mechanism * Used for example for facet elements */ final Object next = iter.next(); EObject diag = NavigatorUtils.getElement(next, EObject.class); if(!(diag instanceof Diagram)) { return false; } } return true; } return false; } }