blob: 8d9b0733eb8e506d1d7301af6a51fd2477b12fcf [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.modelelements.Expose;
public class ExposeSelector implements IClientSelector {
@Override
public boolean selects(Object stereoApplicationObj) {
return stereoApplicationObj instanceof Expose;
}
}