blob: 7dd6b6d89762277c9cfac5aa4328b050c32319be [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* 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:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
/*
*
*/
package org.eclipse.opencert.apm.baseline.baseline.diagram.part;
import org.eclipse.core.expressions.PropertyTester;
import org.eclipse.emf.ecore.EAnnotation;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.opencert.apm.baseline.baseline.diagram.edit.parts.BaseFrameworkEditPart;
/**
* @generated
*/
public class BaselineShortcutPropertyTester extends PropertyTester {
/**
* @generated
*/
protected static final String SHORTCUT_PROPERTY = "isShortcut"; //$NON-NLS-1$
/**
* @generated
*/
public boolean test(Object receiver, String method, Object[] args,
Object expectedValue) {
if (false == receiver instanceof View) {
return false;
}
View view = (View) receiver;
if (SHORTCUT_PROPERTY.equals(method)) {
EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
if (annotation != null) {
return BaseFrameworkEditPart.MODEL_ID.equals(annotation
.getDetails().get("modelID")); //$NON-NLS-1$
}
}
return false;
}
}