blob: 4c9c3aa573dbaa093f0d0269fa485ad43574a42e [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST 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:
* Benoit Maggi (CEA LIST) benoit.maggi@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.sysml14.validation.selectors;
import org.eclipse.emf.validation.model.IClientSelector;
import org.eclipse.papyrus.sysml14.blocks.BoundReference;
public class BoundReferenceSelector implements IClientSelector {
@Override
public boolean selects(Object stereoApplicationObj) {
return stereoApplicationObj instanceof BoundReference;
}
}