blob: aae05a5f853c4bf6febd9deb2e0eedc8dfc457ec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2021 THALES GLOBAL SERVICES.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.table.editor.properties.filters.description.intersectionmapping;
// Start of user code specific imports
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.sirius.editor.properties.filters.common.ViewpointPropertyFilter;
import org.eclipse.sirius.table.metamodel.table.description.DescriptionPackage;
// End of user code specific imports
/**
* A filter for the semanticCandidatesExpression property section.
*/
public class IntersectionMappingSemanticCandidatesExpressionFilter extends ViewpointPropertyFilter {
/**
* {@inheritDoc}
*/
@Override
protected EStructuralFeature getFeature() {
return DescriptionPackage.eINSTANCE.getIntersectionMapping_SemanticCandidatesExpression();
}
/**
* {@inheritDoc}
*/
@Override
protected boolean isRightInputType(Object arg0) {
return arg0 instanceof org.eclipse.sirius.table.metamodel.table.description.IntersectionMapping;
}
// Start of user code user methods
// End of user code user methods
}