blob: 0b668d718777d3706b78098ada6b215c87d59722 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2002, 2003 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 API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.diagram.ui.internal.services.palette;
import org.eclipse.gef.Tool;
import org.eclipse.gef.palette.CombinedTemplateCreationEntry;
import org.eclipse.gmf.runtime.diagram.ui.services.palette.PaletteFactory;
/**
* A tool palette entry with identity
*
* @author melaasar
*/
public class PaletteToolEntry
extends CombinedTemplateCreationEntry {
/** the drawer's id */
private Tool tool;
private PaletteFactory factory;
/**
* @param id
* @param label
* @param factory
*/
public PaletteToolEntry(
String id,
String label,
PaletteFactory factory) {
super(label, null, null, null, null, null);
setId(id);
this.factory = factory;
setTemplate(this);
}
public Tool createTool() {
return tool != null ? tool : factory.createTool(getId());
}
}