/* * Copyright (c) 2005, 2007 IBM Corporation and others. * 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: * IBM Corporation - initial implementation * */ package org.eclipse.epf.diagram.ad.providers; import java.util.Map; import org.eclipse.core.runtime.IConfigurationElement; import org.eclipse.gef.palette.PaletteRoot; import org.eclipse.gmf.runtime.common.core.service.AbstractProvider; import org.eclipse.gmf.runtime.common.core.service.IOperation; import org.eclipse.gmf.runtime.diagram.ui.services.palette.IPaletteProvider; import org.eclipse.ui.IEditorPart; import org.eclipse.epf.diagram.ad.part.UMLPaletteFactory; /** * @generated */ public class UMLPaletteProvider extends AbstractProvider implements IPaletteProvider { /** * @generated */ public void contributeToPalette(IEditorPart editor, Object content, PaletteRoot root, Map predefinedEntries) { UMLPaletteFactory factory = new UMLPaletteFactory(); factory.fillPalette(root); } /** * @generated */ public void setContributions(IConfigurationElement configElement) { // no configuration } /** * @generated */ public boolean provides(IOperation operation) { return false; // all logic is done in the service } }