blob: cb4b4041dd4c5e2f3050e25d49862ad6712c6392 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2007 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.palette.customize;
import org.eclipse.gef.ui.palette.PaletteViewer;
import org.eclipse.gef.ui.palette.customize.PaletteCustomizerDialog;
/**
* GMF's version of the <code>PaletteViewer</code> extended to:
* <li>override the <code>PaletteCustomizerDialog</code></li>
*
* @since 2.1
* @author crevells
*/
public class PaletteViewerEx
extends PaletteViewer {
private PaletteCustomizerDialog customizerDialog = null;
public PaletteViewerEx() {
super();
}
public PaletteCustomizerDialog getCustomizerDialog() {
if (customizerDialog == null) {
customizerDialog = new PaletteCustomizerDialogEx(getControl()
.getShell(), getCustomizer(), getPaletteRoot());
}
return customizerDialog;
}
}