blob: 29ed3f80eb02441fa90af2008060071c066b8fe3 [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2013, 2013 SAP AG.
* 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:
* SAP AG - initial API, implementation and documentation
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.fmc.blockdiagram.editor.filters;
import org.eclipse.fmc.blockdiagram.editor.model.FMCTypeChecker;
import org.eclipse.fmc.blockdiagram.editor.model.FMCTypeCheckerFactory;
import org.eclipse.graphiti.mm.pictograms.PictogramElement;
import org.eclipse.graphiti.ui.platform.AbstractPropertySectionFilter;
/**
*
* @author Benjamin Schmeling
*
*/
public class FMCNodeFilter extends AbstractPropertySectionFilter {
FMCTypeChecker helper = FMCTypeCheckerFactory.getInstance();
@Override
protected boolean accept(PictogramElement pictogramElement) {
return helper.isFMCNode(pictogramElement);
}
}