blob: 66dd265a5a3d2fd8450204bf2d91a14df94dee3a [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;
/**
* @author melaaser, choang
*
* A org.eclipse.gef.palette.PaletteDrawer Palette category with and id and priority and
* who will be collapsed by default.
*
*/
public class PaletteDrawer
extends org.eclipse.gef.palette.PaletteDrawer {
/**
* @param id The drawer's id
* @param label The drawer's label
*/
public PaletteDrawer(String id, String label) {
super(label);
setId(id);
this.setInitialState(INITIAL_STATE_CLOSED);
}
}