blob: 93c8c34e37503fda24067b2a5578db867ad9356f [file] [log] [blame]
/*
*
*/
package comrel.diagram.part;
import org.eclipse.core.expressions.PropertyTester;
import org.eclipse.emf.ecore.EAnnotation;
import org.eclipse.gmf.runtime.notation.View;
import comrel.diagram.edit.parts.CompositeRefactoringEditPart;
/**
* @generated
*/
public class ComrelShortcutPropertyTester 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 CompositeRefactoringEditPart.MODEL_ID.equals(annotation
.getDetails().get("modelID")); //$NON-NLS-1$
}
}
return false;
}
}