/******************************************************************************* * Copyright (c) 2014 Pivotal Software, Inc. * 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: * Pivotal Software, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.config.ui.editors.integration.kafka.graph.parts; import org.eclipse.gef.EditPart; import org.eclipse.gef.EditPartFactory; import org.springframework.ide.eclipse.config.ui.editors.integration.graph.IntegrationImages; import org.springframework.ide.eclipse.config.ui.editors.integration.graph.parts.BadgedIntegrationPart; import org.springframework.ide.eclipse.config.ui.editors.integration.kafka.graph.model.InboundChannelAdapterModelElement; import org.springframework.ide.eclipse.config.ui.editors.integration.kafka.graph.model.MessageDrivenChannelAdapterModelElement; import org.springframework.ide.eclipse.config.ui.editors.integration.kafka.graph.model.OutboundChannelAdapterModelElement; public class IntKafkaEditPartFactory implements EditPartFactory { public EditPart createEditPart(EditPart context, Object model) { EditPart part = null; if (model instanceof InboundChannelAdapterModelElement) { part = new BadgedIntegrationPart((InboundChannelAdapterModelElement) model, IntegrationImages.INBOUND_ADAPTER, IntegrationImages.BADGE_SI_KAFKA); } else if (model instanceof OutboundChannelAdapterModelElement) { part = new BadgedIntegrationPart((OutboundChannelAdapterModelElement) model, IntegrationImages.OUTBOUND_ADAPTER, IntegrationImages.BADGE_SI_KAFKA); } else if (model instanceof MessageDrivenChannelAdapterModelElement) { part = new BadgedIntegrationPart((MessageDrivenChannelAdapterModelElement) model, IntegrationImages.INBOUND_ADAPTER, IntegrationImages.BADGE_SI_KAFKA); } return part; } }