blob: b5c8fcd79eadddac5c8051d44e56dc8aa17aab11 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2010, 2016 CEA LIST, Esterel technologies SAS 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:
* CEA LIST - Initial API and implementation
* Alain Le Guennec (Esterel technologies SAS) - Bug 497455
*
*****************************************************************************/
package org.eclipse.papyrus.sysml.service.types.matcher;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.runtime.emf.type.core.IElementMatcher;
import org.eclipse.papyrus.sysml.blocks.Block;
import org.eclipse.uml2.uml.AggregationKind;
import org.eclipse.uml2.uml.Class;
import org.eclipse.uml2.uml.Port;
import org.eclipse.uml2.uml.Property;
import org.eclipse.uml2.uml.Type;
import org.eclipse.uml2.uml.util.UMLUtil;
/**
* Test if current {@link Property} is a {@link Block} Part
*/
public class PartPropertyMatcher implements IElementMatcher {
/**
* {@inheritDoc}
*/
public boolean matches(EObject eObject) {
boolean isMatch = false;
if ((eObject instanceof Property) && !(eObject instanceof Port)) {
Property element = (Property) eObject;
// The property is necessary a composition and has a type
Type type = element.getType();
if ((type != null) && (element.getAggregation() == AggregationKind.COMPOSITE_LITERAL)) {
// Moreover its type has to be a Block
if (type instanceof Class && UMLUtil.getStereotypeApplication(type, Block.class) != null) {
isMatch = true;
}
}
}
return isMatch;
}
}