blob: 112008a81b92ebe5fb0ec0a4ae2f738d2a8fcb05 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2014 CEA LIST.
*
* 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
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.validation;
import org.eclipse.emf.validation.model.IClientSelector;
import org.eclipse.uml2.uml.Element;
/**
* THe client selector for constraints contributed by Moka
*
*/
public class ClientSelector implements IClientSelector {
@Override
public boolean selects(Object object) {
return (object instanceof Element);
}
}