blob: 5d64ec2f1c48bea49e028624321787c12d7ac7b3 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2004 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.gef.ui.internal.palette;
import org.eclipse.jface.resource.ImageDescriptor;
/**
* An implementation of a palette stack with identity
*
* @author cmahoney
*/
public class PaletteStack
extends org.eclipse.gef.palette.PaletteStack
implements PaletteIdentity {
/** the drawer's id */
private String id;
/**
* Creates a new PaletteStack.
* @param id the id
* @param name the name, shown only in the customize menu
* @param desc the description, shown only in the customize menu
* @param icon the name, shown only in the customize menu
*/
public PaletteStack(String id, String name, String desc,
ImageDescriptor icon) {
super(name, desc, icon);
this.id = id;
}
/**
* @see org.eclipse.gmf.runtime.gef.ui.internal.palette.PaletteIdentity#getId()
*/
public String getId() {
return id;
}
}