/* * Copyright (C) 2006-2016 DLR, Germany * * All rights reserved * * http://www.rcenvironment.de/ */ package de.rcenvironment.core.gui.workflow.integration; import de.rcenvironment.core.component.integration.ToolIntegrationConstants; import de.rcenvironment.core.gui.workflow.editor.properties.ComponentFilter; /** * Filter for all standard integrated tool components. * * @author Sascha Zur */ public class DefaultToolIntegratorComponentFilter extends ComponentFilter { @Override public boolean filterComponentName(String componentId) { boolean isMatch = false; for (String id : ToolIntegrationConstants.COMPONENT_IDS) { if (componentId.startsWith(id)) { isMatch = true; } } return isMatch; } }