/******************************************************************************* * 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.mqtt.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.mqtt.graph.model.InboundChannelAdapterModelElement; import org.springframework.ide.eclipse.config.ui.editors.integration.mqtt.graph.model.OutboundChannelAdapterModelElement; public class IntMqttEditPartFactory 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_MQTT); } else if (model instanceof OutboundChannelAdapterModelElement) { part = new BadgedIntegrationPart((OutboundChannelAdapterModelElement) model, IntegrationImages.OUTBOUND_ADAPTER, IntegrationImages.BADGE_SI_MQTT); } return part; } }