blob: 31bf546dab1dc75faefff769027a5556516ca72c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2010 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.gef.ui.palette.customize;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.gef.palette.PaletteEntry;
import org.eclipse.gef.palette.PaletteGroup;
import org.eclipse.gef.ui.palette.PaletteMessages;
/**
* Factory to create {@link org.eclipse.gef.palette.PaletteGroup groups}
*
* @author Pratik Shah
*/
public class PaletteGroupFactory extends PaletteContainerFactory {
/**
* Constructor
*/
public PaletteGroupFactory() {
setLabel(PaletteMessages.MODEL_TYPE_GROUP);
}
/**
* @see org.eclipse.gef.ui.palette.customize.PaletteEntryFactory#createNewEntry(Shell)
*/
protected PaletteEntry createNewEntry(Shell shell) {
PaletteGroup group = new PaletteGroup(PaletteMessages.NEW_GROUP_LABEL);
group.setUserModificationPermission(PaletteEntry.PERMISSION_FULL_MODIFICATION);
return group;
}
}