blob: 0bb04ce01263dae9d76d99fd6dd53e596cb97583 [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.gef.ui.internal.palette;
/**
* An implementation of a palette group with identity
*
* @author melaasar
*/
public class PaletteGroup
extends org.eclipse.gef.palette.PaletteGroup {
/**
* @param id
* @param label
*/
public PaletteGroup(String id, String label) {
super(label);
setId(id);
}
}