/* * Copyright (c) 2007 Borland Software Corporation * * 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: * Dmitry Stadnik (Borland) - initial API and implementation */ package org.eclipse.gmf.examples.taipan.port.diagram.providers.assistants; import java.util.ArrayList; import java.util.List; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.gmf.examples.taipan.port.diagram.providers.TaiPanElementTypes; import org.eclipse.gmf.examples.taipan.port.diagram.providers.TaiPanModelingAssistantProvider; import org.eclipse.gmf.runtime.emf.type.core.IElementType; /** * @generated */ public class TaiPanModelingAssistantProviderOfPortEditPart extends TaiPanModelingAssistantProvider { /** * @generated */ @Override public List<IElementType> getTypesForPopupBar(IAdaptable host) { List<IElementType> types = new ArrayList<IElementType>(1); types.add(TaiPanElementTypes.Building_2001); return types; } }